Skip to content

Instantly share code, notes, and snippets.

@ahmedch1
Created September 3, 2022 22:22
Show Gist options
  • Save ahmedch1/d13d2eaa8a07e7eedac19662077ce5ac to your computer and use it in GitHub Desktop.
Save ahmedch1/d13d2eaa8a07e7eedac19662077ce5ac to your computer and use it in GitHub Desktop.
add_action('wp_enqueue_scripts', 'customize_cf7_dequeue');
function customize_cf7_enqueue($content)
{
if (has_shortcode($content, 'contact-form-7') && function_exists('wpcf7_enqueue_styles')) {
$content = '<link href="' . esc_url(wpcf7_plugin_url('includes/css/styles.css') . '?ver=' . WPCF7_VERSION) . '" rel="stylesheet" type="text/css">' .
$content;
wpcf7_enqueue_scripts();
}
return $content;
}
add_filter('the_content', 'customize_cf7_enqueue');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment