Shop
Showing 2365–2376 of 4147 results
// تعديل المنتجات المشابهة: يعرض منتجات من نفس التصنيف فقط add_filter('woocommerce_related_products', 'custom_related_products_by_category', 10, 3); function custom_related_products_by_category($related_posts, $product_id, $args) { $product = wc_get_product($product_id); $categories = wp_get_post_terms($product_id, 'product_cat', array('fields' => 'ids')); if (empty($categories)) { return $related_posts; // لو مفيش تصنيفات، نرجع للقائمة الأصلية } $args = array( 'post_type' => 'product', 'post_status' => 'publish', 'posts_per_page' => 8, // عدد المنتجات المشابهة 'post__not_in' => array($product_id), 'fields' => 'ids', 'tax_query' => array( array( 'taxonomy' => 'product_cat', 'field' => 'term_id', 'terms' => $categories, 'operator' => 'IN', ), ), ); $related_products = get_posts($args); return $related_products; }
Showing 2365–2376 of 4147 results