preload on specific pages
-
Hi,
Thanks again for your plugin.
I would like to preload some stuffs on specific pages. I found your php code on another post.
————————————————————————————-
add_filter( ‘autoptimize_filter_extra_tobepreloaded’, ‘frontpage_specific_preload’ );
function frontpage_specific_preload( $preload_array ) {
if ( is_front_page() ) {
$preload_array[] = ‘https://staging.tripletsmum.com/wp-content/uploads/2017/11/Naming-Triplets.jpg’;
}
return $preload_array;
}
——————————————————————————-But this is specific to the front page. I’m not very advanced at this point in wordpress specific coding.
I tried is_page(‘page title or ID’) on the condition, but this doesn’t seems to work.
Any help on this would be appreciated. Thanks.
- The topic ‘preload on specific pages’ is closed to new replies.