mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
9 lines
263 B
Text
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;
|
|
}
|