Recent

crp_lazy_load filter Pro only

crp_lazy_load

Filter whether the related posts should be lazy loaded.

Type: filter
Since: 4.3.0
Source: includes/class-lazy-load-module.php line 158

Parameters

TypeNameDescription
bool$lazy_loadWhether to lazy load the related posts.
\WP_Post|null$postCurrent post object.
array$argsArguments array.

Usage

add_filter( 'crp_lazy_load', function($lazy_load, $post, $args) {
    // ...
    return $lazy_load;
} );