Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shawnkfinn/bf55b9ee57a153a0c2fa1b1e2ce230d6 to your computer and use it in GitHub Desktop.
Save shawnkfinn/bf55b9ee57a153a0c2fa1b1e2ce230d6 to your computer and use it in GitHub Desktop.
Conditional Load WPCF7 assets - use this if globally disabling them first
<?php // Copy and Paste snippet below into child-theme functions or custom plugin -- DELETE THIS LINE
// Conditional Load WPCF7 assets - use this if globally disabling them first
if ( function_exists( 'wpcf7_enqueue_scripts' ) ) {
wpcf7_enqueue_scripts();
}
if ( function_exists( 'wpcf7_enqueue_styles' ) ) {
wpcf7_enqueue_styles();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment