Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save WISHPRO/a6b8b84c2d74c8ab99a1 to your computer and use it in GitHub Desktop.
Save WISHPRO/a6b8b84c2d74c8ab99a1 to your computer and use it in GitHub Desktop.
<?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