Option for exclude page of post
-
Hi! Can you make page/post exclusion option to page/post edit menu like WP Rocket?
And tell me please how can I exclude page now with functions.php this code didn’t work:
add_filter( 'a3_lazy_load_run_filter', 'skip_a3_lazy_load_for_this_page', 11 ); function skip_a3_lazy_load_for_this_page( $apply_lazyload ) { if ( is_page('coming-soon') ) { $apply_lazyload = false; } return $apply_lazyload; }
Plugin v. 1.8.2
Thanks!
- The topic ‘Option for exclude page of post’ is closed to new replies.