Антон, спасибо за ответ.
Если я хочу исключить категорию с id15
то я пишу
add_filter( 'me_exclude_post', 'me_exclude_product', 10, 3 );
function me_exclude_product( $exclude, $post, $product ) {
$categories = $product->get_category_ids();
if ( in_array( 15, $categories, true ) ) {
$exclude = true;
}
return $exclude;
}
Если 2 категории с id 15 и 5030, то
add_filter( 'me_exclude_post', 'me_exclude_product', 10, 3 );
function me_exclude_product( $exclude, $post, $product ) {
$categories = $product->get_category_ids();
if ( in_array( 15, $categories, true ) || in_array( 5030, $categories, true ) ) {
$exclude = true;
}
return $exclude;
}
Добавляю через https://www.ads-software.com/plugins/my-custom-functions/
Ничего не происходит, выгружаются все товары.