Skip to content

Commit

Permalink
Merge pull request #94 from liip/fix-typos
Browse files Browse the repository at this point in the history
fix typos
  • Loading branch information
tschortsch authored Jan 21, 2022
2 parents 257a3c8 + 5823016 commit 07a5d87
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ composer.phar
/release
cypress/videos
cypress/screenshots
.DS_Store
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ The support is still experimental since it's also marked as experimental in the
Please be aware that this plugin does not include the Bootstrap library in your website. You need to do this by yourself.
We decided not to include the library so that you can modify Bootstrap to your own needs before loading it.

The easiest way to do this is to add the following to your theme's `function.php`:
The easiest way to do this is to add the following to your theme's `functions.php`:

```php
function mytheme_load_bootstrap() {
if ( is_admin() ) {
return;
return;
}

wp_enqueue_style( 'bootstrap', 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css', array(), '4.3.1' );
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ The support is still experimental since it's also marked as experimental in the

Please be aware that this plugin does not include the Bootstrap library in your website. You need to do this by yourself. We decided not to include the library so that you can modify Bootstrap to your own needs before loading it.

You'll find an example how to include it in your theme's `function.php` in the [documentation](https://github.com/liip/bootstrap-blocks-wordpress-plugin#bootstrap-library).
You'll find an example how to include it in your theme's `functions.php` in the [documentation](https://github.com/liip/bootstrap-blocks-wordpress-plugin#bootstrap-library).

= Templates =

Expand Down

0 comments on commit 07a5d87

Please sign in to comment.