This file contains 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
development: | |
password: ${PASSWORD} | |
theme_id: ${ID} | |
store: ${URL} | |
ignore_files: | |
- .git/* | |
- .gitignore | |
- .idea | |
- dev/* | |
- .theme-check.yml |
This file contains 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
/** | |
* Contact Form 7 plugin filters | |
* | |
* @author Jase Warner | |
* @version 1.0.0 | |
* @package <package> | |
*/ | |
/** | |
* Remove <p/> tags from forms |
This file contains 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
/** | |
* Pretty printing debugging tool. | |
*/ | |
function pr( $var ) { | |
print '<pre>'; | |
print_r( $var ); | |
print '</pre>'; | |
} | |
// Usage. |
This file contains 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
# ignore everything in the root except the "wp-content" directory. | |
/* | |
!wp-content/ | |
# ignore everything in the "wp-content" directory, except the themes directories | |
wp-content/* | |
!wp-content/themes/ | |
# ignore all mu-plugins, plugins, and themes | |
# unless explicitly whitelisted at the end of this file |