mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
10 lines
256 B
Text
10 lines
256 B
Text
add_filter(
|
|
'wp_speculation_rules_configuration',
|
|
function ( $config ) {
|
|
if ( is_array( $config ) ) {
|
|
$config['mode'] = 'prerender';
|
|
$config['eagerness'] = 'moderate';
|
|
}
|
|
return $config;
|
|
}
|
|
);
|