Skip to content

Instantly share code, notes, and snippets.

@cfxd
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cfxd/efa0a32739a0559ce56e to your computer and use it in GitHub Desktop.
Save cfxd/efa0a32739a0559ce56e to your computer and use it in GitHub Desktop.
Load the Contact Form 7 Stylesheet and JavaScript Only When Necessary (the Right Way). See http://cfxdesign.com/load-the-contact-form-7-stylesheet-and-javascript-only-when-necessary/
<?php do_action('cf7_before_wp_head'); ?>
<?php
function remove_cf7_assets() {
if(is_front_page()) {
return;
}
add_filter('wpcf7_load_js', '__return_false');
add_filter('wpcf7_load_css', '__return_false');
}
add_action('cf7_before_wp_head', 'remove_cf7_assets');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment