Code-Snippets-Functions/Execute a function on a child site/WordPress/exclude-cart-from-speculative-loading.txt

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;
}
);