This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ----------------------------------------------------------------- | |
| # .gitignore for WordPress @salcode | |
| # ver 20180808 | |
| # | |
| # From the root of your project run | |
| # curl -O https://gist.github.com/salcode/b515f520d3f8207ecd04/raw/.gitignore | |
| # to download this file | |
| # | |
| # By default all files are ignored. You'll need to whitelist | |
| # any mu-plugins, plugins, or themes you want to include in the repo. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| One wp-config for local development to staging to production. | |
| */ | |
| // Define Environments | |
| $environments = array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Removing plugin controls from admin | |
| function remove_plugin_controls($actions, $plugin_file, $plugin_data, $context){ | |
| if (array_key_exists('edit', $actions)) { | |
| unset($actions['edit']); | |
| } | |
| if (array_key_exists('deactivate', $actions)) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="application/ld+json"> | |
| { | |
| "@context": "http://schema.org", | |
| "@type": "VideoObject", | |
| "name": "Best Credit Resources", | |
| "description": "Find out how you can improve your credit rating with the help of BCR", | |
| "thumbnailUrl": "http://www.example.com/thumbnail.jpg", | |
| "uploadDate": "2016-06-05T08:00:00+08:00", | |
| "duration": "PT1M33S", | |
| "contentUrl": "http://www.example.com/credit.mp3", |