查询不使用自定义分类的帮助

时间:2012-07-31 作者:Chuck

下面的查询总是返回最新的“新闻”帖子,而不是分类法为“sotm”的最新“新闻”帖子。我已经验证了自定义分类法的详细信息,名称是“Postat”,附加到帖子类型“news”,并且有一个术语“sotm”应用于我要显示的帖子。有人能指出可能的错误吗?

    <?php
        $sotmArticle_query = new WP_Query(array(
            \'post_type\' => \'news\',
            \'postCat\' => \'sotm\',
            \'orderby\' => \'date\',
            \'order\' => \'DESC\',
            \'posts_per_page\' => 1
        ));
        if($sotmArticle_query->have_posts()){
            while($sotmArticle_query->have_posts()){ $sotmArticle_query->the_post();
    ?>

1 个回复
最合适的回答,由SO网友:anu 整理而成

尝试以下操作:

    $sotmArticle_query = new WP_Query(
      array(
        \'post_type\' => \'news\',
        \'tax_query\' => array(
                           array(
                                  \'taxonomy\' => \'postCat\', 
                                  \'field\' => \'slug\', 
                                  \'terms\' => \'sotm\'
                           )
                       ),
        \'orderby\' => \'date\',
        \'order\' => \'DESC\',
        \'posts_per_page\' => 1
     )
    );
    if($sotmArticle_query->have_posts()){
        while($sotmArticle_query->have_posts()){ $sotmArticle_query->the_post();
?>

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post