M
M
Mikhail Lebedev2018-01-30 16:49:33
WordPress
Mikhail Lebedev, 2018-01-30 16:49:33

Wordpress - disable script loading on homepage?

How to force WP not to load the script on the main page (on the rest to load)
what is there to add to the function.php of the theme?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Artemy, 2018-01-30
Kaydash @kayart

function load_pages_script() {
    if( !is_front_page() )
    {
        wp_enqueue_script('newscript', get_template_directory_uri() . '/js/custom_script.js');
    }
}
add_action( 'wp_enqueue_scripts', 'load_pages_script' );

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question