您正在将错误的数组密钥传递给$args
. 执行以下操作:
$args = array(
\'posts_per_page\' => \'12\',
\'product_cat\' => \'lead-generation\',
\'post_type\' => \'product\',
\'orderby\' => \'title\',
);
$query = new WP_Query( $args );
if( $query->have_posts()) : while( $query->have_posts() ) : $query->the_post();
the_post_thumbnail(\'full\');
//want to display the thumbnail
endwhile;
endif;
没有
per_page
键,使用
posts_per_page
相反
Woocommerce类别分类slug是“product\\u cat”。“category\\u name”用于普通帖子。您必须针对woocommerce的帖子类型,如下所示product
.