mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
7 lines
186 B
Text
7 lines
186 B
Text
add_filter(
|
|
'wp_speculation_rules_href_exclude_paths',
|
|
function ( $href_exclude_paths ) {
|
|
$href_exclude_paths[] = '/cart/*';
|
|
return $href_exclude_paths;
|
|
}
|
|
);
|