如何在Genesis框架上从单一帖子格式查询帖子

时间:2012-06-29 作者:iniyan

如何在Genesis框架上从单一帖子格式查询帖子?我只想显示来自gallery post 仅格式化。

我尝试了以下查询:

<?php 
$recent = new WP_Query(
    "taxonomy=post-format&field=slug&terms=post_format-link&posts_per_page=‌​5"
); 
while($recent->have_posts()) : 
$recent->the_post();
?>
但我没有得到我想要的。

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

分类法应为post_format 术语应为post-format-link. 此外,自3.1以来,简单的分类查询也被弃用,取而代之的是tax_query:

$args = array(
    \'posts_per_page\' => 5,
    \'tax_query\' => array(
        array(
            \'taxonomy\' => \'post_format\',
            \'field\' => \'slug\',
            \'terms\' => \'post-format-link\'
        )
    )
);
$recent = new WP_Query( $args ); 

结束

相关推荐

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

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