我正在使用以下功能来获取“特色”类别中的markerpress产品。并以幻灯片形式显示产品图像。
$args = array(
'category_name' => 'featured',
'post_type' => 'product'
);
$wp_query1 = new WP_Query( $args );
if (have_posts()) : while ( $wp_query1->have_posts() ) : $wp_query1->the_post()
问题是它无法获取任何数据。我被迫只使用以下显示所有数据的功能。
$wp_query1 = new WP_Query('post_type=product');
我做错了什么,如何设置限制并对数据进行排序。谢谢。
答案 0 :(得分:0)
Teradata