Last active
August 29, 2015 14:01
-
-
Save yratof/e985ff3f5c9efbc75769 to your computer and use it in GitHub Desktop.
Stop loading Contact Form 7 scripts and styles when you don't need them
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 | |
if ( function_exists( 'wpcf7_enqueue_scripts' ) ) { | |
wpcf7_enqueue_scripts(); // This loads the needed scripts | |
//wpcf7_enqueue_styles(); // This loads your styles, but i prefer to use my own attached | |
} | |
?> |
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
define('WPCF7_LOAD_JS', false); | |
define('WPCF7_LOAD_CSS', false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment