Created
November 23, 2024 09:40
-
-
Save marstamyan/f6fe8028dd17fae6376e1c1f7ce7b368 to your computer and use it in GitHub Desktop.
Load Contact Form 7 styles and scripts only on specific pages
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
<?php | |
function disable_cf7_assets_except_some_pages() { | |
$allowed_pages = ['contact']; | |
if (!is_page($allowed_pages)) { | |
wp_dequeue_style('contact-form-7'); | |
wp_deregister_style('contact-form-7'); | |
wp_dequeue_script('contact-form-7'); | |
wp_deregister_script('contact-form-7'); | |
} | |
} | |
add_action('wp_enqueue_scripts', 'disable_cf7_assets_except_some_pages', 99); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment