/ Published in: PHP
Prevents WordPress from loading Contact Form 7 on page templates other than the one defined.
Expand |
Embed | Plain Text
add_action ('wp_print_scripts', 'my_deregister_cform', 100); function my_deregister_cform() { if (!is_page_template('page-contact.php')) { wp_deregister_script('contact-form-7'); } }
You need to login to post a comment.
