Code-Snippets-Functions/Execute a function on a child site/Advanced Woo Search/exclude-products-by-id.txt

9 lines
263 B
Text

add_filter( 'aws_exclude_products', 'my_aws_exclude_products', 10, 3 );
function my_aws_exclude_products( $products ) {
if ( ! is_user_logged_in() ) {
$products[] = 75;
$products[] = 78;
$products[] = 83;
}
return $products;
}