رفتن به مطلب

نمایش یک دسته بندی خاص در ووکامرس


پست های پیشنهاد شده

سلام دوستان

کدی از قالب برداشتم که مربوط به نمایش مخصولات ووکامرس هست که 16 محصول رو در صفحه اصلی نمایش می ده حالا می خواستم این کد رو تغییری بدم که دسته بندی خاصی رو نشون بده مثلا تمامی مادربردها رو فقط نشون بده چطور باید این کد رو تغییر بدم ممنون می شم کمک کنید.

<?php 
$args = array(  
   'post_type' => 'product', 
			'stock' => 1, 
			'posts_per_page' => 16, 

			'orderby' =>'date',
			'order' => 'DESC' 
);  
  
$featured_query = new WP_Query( $args );  
      
if ($featured_query->have_posts()) :   
  
    while ($featured_query->have_posts()) :   
      
        $featured_query->the_post();  ?>
          
        
        <div class="col-lg-3 col-xs-6">
        <div <?php post_class( $classes ); ?> >
          <div class="product-item"> <a id="id-<?php the_id(); ?>" href="<?php the_permalink(); ?>">
            <div class="img-thumb"> <?php
			/**
			 * woocommerce_before_shop_loop_item_title hook
			 *
			 * @hooked woocommerce_show_product_loop_sale_flash - 10
			 * @hooked woocommerce_template_loop_product_thumbnail - 10
			 */
			do_action( 'woocommerce_before_shop_loop_item_title' );
		?>

 

لینک به ارسال

سلام

$args = array(
    'post_type'      => 'product',
    'stock'          => 1,
    'posts_per_page' => 16,
    'orderby'        => 'date',
    'order'          => 'DESC',
    'tax_query'      => array(
        array(
            'taxonomy' => 'product_cat',
            'field'    => 'slug', // term_id, name, slug
            'terms'    => 'category-slug', // category id, category name, category slug
        ),
    ),
);

اطلاعات بیشتر

  • امتیاز 2
لینک به ارسال
  • 2 هفته بعد...

این رو تست کنید

$args = array(
    'post_type'      => 'product',
    'stock'          => 1,
    'posts_per_page' => 16,
    'orderby'        => 'meta_value_num',
    'order'          => 'DESC',
	'meta_key' => '_stock'
);

 

https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters

  • امتیاز 3
لینک به ارسال

لطفا برای ارسال دیدگاه وارد شوید

شما بعد از اینکه وارد حساب کاربری خود شدید می توانید دیدگاهی ارسال کنید



ورود به حساب کاربری
×
×
  • اضافه کردن...