Ashley Cameron Design

Ashley Cameron Design

Shop the Creative Design Market

Good evening

Load Contact Form 7 only when needed

SnippetsWordPress

About a 1 minute read

"There is one thing one has to have: either a soul that is cheerful by nature, or a soul made cheerful by work, love, art, and knowledge."

Friedrich Nietzsche


1
2
3
4
5
6
7
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');
    }
}