Conditional loading by page
-
I only use text slider on my home page.
I’d like to prevent it from loading all of it’s files on every page on the site so was thinking of something like this in my custom.php filecan you tell me the correct name for the ‘text_slider’ below
as well as what I should use to stop the css loads too?function custom_text_slider_load() { if( is_home() ) { text_slider(); } } remove_action( 'wp_enqueue_scripts', 'text_slider' ); add_action( 'wp_enqueue_scripts', 'custom_text_slider_load' );
Thanks!
- The topic ‘Conditional loading by page’ is closed to new replies.