我想在woocommerce中仅显示图像产品。
我的获取查询在下面给出
$args = array( 'post_type' => 'product', 'stock' => 1, 'posts_per_page' => 9, 'orderby' =>'date','orderby' => 'rand' );
$loop = new WP_Query( $args );
我怎样才能获得图片产品?
答案 0 :(得分:1)
你在找这样的东西吗?
$args = array(
'post_type' => 'product',
'stock' => 1,
'posts_per_page' => 9,
'orderby' =>'date',
'orderby' => 'rand',
'meta_query'=>array(
array(
'key'=>'_thumbnail_id',
'compare' => 'EXISTS'
)
)
);
<强>已更新强>
<reference name="product_list_toolbar">
<action method="addPagerLimit"><mode>grid</mode><limit>28</limit></action>
</reference>
如果产品有特征图像,请更改arg以获取产品。