Code-Snippets-Functions/Execute a function on a child site/WP Rocket/adjust-lazyload-threshold.txt

4 lines
152 B
Text

function rocket_lazyload_custom_threshold( $threshold ) {
return 100;
}
add_filter( 'rocket_lazyload_threshold', 'rocket_lazyload_custom_threshold' );