使用自定义分类名称显示帖子 - wordpress

时间:2014-05-16 14:27:05

标签: php wordpress categories taxonomy

我有以下代码行:

$args = array( 'category_name' => the_slug(), 'post_type' => 'Feature', 'posts_per_page' => 2, 'orderby'=> rand );

只要类别名称与当前页面的slug相同,这样就可以很好地显示该类别中的两个帖子。我需要将类别名称更改为我的自定义分类,这称为“特色”。我已经尝试将category_name更改为features_name,但它只显示了所有帖子,而不是仅显示该分类中的帖子。

1 个答案:

答案 0 :(得分:1)

结束以下内容:

$args = array(
'showposts' => -0,
'post_type' => 'feature',
'orderby' => rand,
'tax_query' => array(
   array(
    'taxonomy' => 'featuring',
    'field' => 'slug',
    'terms' => the_slug()
    )
  )
);