在wordpress上从选定的分类中选择特定的自定义帖子类型

时间:2015-03-04 02:07:55

标签: custom-post-type custom-taxonomy

你好我有post_type"产品"和分类学"价格"有人可以帮我查询所选分类法的自定义帖子类型吗?

我目前的代码是这样的

<?php $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
$args = array(
 'post_type'   => 'product',
 'posts_per_page' => 5,
 'tax_query' => array(
    array(
      'taxonomy' => 'productcategories',
      'terms' => $term->name
    )
  )
);
query_posts($args);
print_r($args);?>

但结果没有,有人可以帮助我吗?谢谢

1 个答案:

答案 0 :(得分:0)

我发现了什么错误。

代码没有错,我已经解决了。那是因为我还没有将内容设置为选定的自定义类别,这就是它显示为空的原因。

我的不好