הסרת הקטגוריות מתוך עמוד החנות של ווקומרס
יש להוסיף את הקוד הבא לתוך קובץ הfunctions.php -( כדאי להוסיף לתחתית הקובץ ) של ערכת הנושא הפעילה שלכם
add_action( 'pre_get_posts', 'custom_pre_get_posts_query' );
function custom_pre_get_posts_query( $q ) {
if ( ! $q->is_main_query() ) return;
if ( ! $q->is_post_type_archive() ) return;
if ( ! is_admin() && is_shop() && ! is_user_logged_in() ) {
$q->set( 'tax_query', array(array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => array( 'color', 'flavor', 'spices', 'vanilla' ), // Don't display products in these categories on the shop page
'operator' => 'NOT IN'
)));
}
remove_action( 'pre_get_posts', 'custom_pre_get_posts_query' );
}
📊 נתוני צפיות
סה"כ צפיות: 6
מבקרים ייחודיים: 6
- 🧍 172.71.102.181 (
Netherlands)
- 🧍 172.71.182.212 (
Netherlands)
- 🧍 172.71.98.193 (
Netherlands)
- 🧍 172.71.182.202 (
Netherlands)
- 🧍 141.101.76.182 (
Netherlands)
- 🧍 172.69.214.210 (
Canada)