mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
14 lines
412 B
Text
14 lines
412 B
Text
function sp_sitemaps_single_query($args, $cpt_key) {
|
|
if ( $cpt_key == 'product' ) {
|
|
//default
|
|
// $args['tax_query'][] = [
|
|
// 'taxonomy' => 'product_visibility',
|
|
// 'field' => 'slug',
|
|
// 'terms' => ['exclude-from-catalog'],
|
|
// 'operator' => 'NOT IN',
|
|
// ];
|
|
unset($args['tax_query']);
|
|
}
|
|
return $args;
|
|
}
|
|
add_filter('seopress_sitemaps_single_query', 'sp_sitemaps_single_query', 10, 2);
|