آموزش حذف یک دسته بندی از شورتکد محصولات در ووکامرس
شما براحتی میتوانید دسته بندی مورد نظر خود را از shortcode حذف نمایید
برای حذف یک دسته بندی از شورتکد در ووکامرس کافیست کد زیر را در functions.php قرار دهید
add_filter( 'woocommerce_shortcode_products_query' , 'a4fran3_exclude_cat_shortcodes'); function a4fran3_exclude_cat_shortcodes($query_args){ $query_args['tax_query'] = array(array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => array('black'), // Don't display products from this category 'operator' => 'NOT IN' )); return $query_args; }
نتیجه کد بالا :