WooCommerce Change number of related products on product page

تم اضافة ايضا كود خاص بالهاتف الى الكود

// Change number of related products and columns
add_filter('woocommerce_output_related_products_args', 'wtwh_change_number_related_products', 9999);
function wtwh_change_number_related_products($args) {
    // Determine the number of related products and columns based on device screen width
    $number_of_related_products = 5; // Default number of related products
    $columns = 5; // Default number of columns per row

    if (wp_is_mobile()) {
        // If it's a mobile device, adjust the number of related products and columns
        $number_of_related_products = 4; // Adjust as needed
        $columns = 2; // Adjust as needed
    }

    // Set the number of related products and columns
    $args['posts_per_page'] = $number_of_related_products;
    $args['columns'] = $columns;

    return $args;
}

اترك تعليقاً

لن يتم نشر عنوان بريدك الإلكتروني. الحقول الإلزامية مشار إليها بـ *

تحتاج إلى إستضافةاحترافية لموقعك؟ شركة هوستنغر توفر استضافة ووردبريس ذات سُرعةٍ عالية فقط بسعر 2.59 دولار /الشهر + 3 أشهر مجانـا.أنقر هنا لحجز الإستضافة
Scroll to Top