我正在通过 wpsc_start_category_query 进行查询,然后我只想从查询的产品中获取一种产品。
比如:查询类别 category1 查询产品 by category1 product1 查询类别 category2 查询产品 by category2 等等。
<?php wpsc_start_category_query(array('category_group'=> get_option('wpsc_default_category'), 'show_thumbnails'=> 1)); ?>
$args = array(
'post_type' => 'wpsc-product',
'post_status' => 'publish',
'posts_per_page' => 3,
'orderby' => 'rand',
'tax_query' => array(
array(
'taxonomy' => 'wpsc_product_category',
'field' => 'id',
'terms' => 'HERESOMECODE'
)
)
);
$cat1_posts = get_posts($args);
?>
我的问题是我不能给出 'wpsc_product_category' => wpsc_category_name(); 我的意思是我不能查询当前类别的帖子
有什么建议吗?非常简单的任务,我真的伤透了脑筋