• 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!

    • This topic was modified 7 years, 8 months ago by Alexander.
  • The topic ‘Option for exclude page of post’ is closed to new replies.