// عرض 8 منتجات مشابهة من نفس التصنيف add_filter('woocommerce_related_products', 'custom_related_products_by_category', 10, 3); function custom_related_products_by_category($related_posts, $product_id, $args) { // الحصول على تصنيفات المنتج الحالي $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), 'orderby' => 'rand', // ترتيب عشوائي 'fields' => 'ids', 'tax_query' => array( array( 'taxonomy' => 'product_cat', // التصنيفات الأساسية في ووكوميرس 'field' => 'term_id', 'terms' => $categories, 'operator' => 'IN', ), ), ); $related_products = get_posts($args); return !empty($related_products) ? $related_products : $related_posts; } Shop – Page 142 – El-Embaby Pharmacies

Shop

Showing 1693–1704 of 4147 results