Skip to content

Instantly share code, notes, and snippets.

@marstamyan
Created November 23, 2024 09:40
Show Gist options
  • Save marstamyan/f6fe8028dd17fae6376e1c1f7ce7b368 to your computer and use it in GitHub Desktop.
Save marstamyan/f6fe8028dd17fae6376e1c1f7ce7b368 to your computer and use it in GitHub Desktop.
Load Contact Form 7 styles and scripts only on specific pages
<?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