mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
5 lines
122 B
Text
5 lines
122 B
Text
add_filter( 'flatsome_infinite_scroll_params', function ( $params ) {
|
|
$params['history'] = false;
|
|
|
|
return $params;
|
|
} );
|