Created
September 3, 2022 22:22
-
-
Save ahmedch1/d13d2eaa8a07e7eedac19662077ce5ac to your computer and use it in GitHub Desktop.
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
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