没有POST格式的存档页面(只有标准POST格式)

时间:2014-08-27 作者:ahmetertem

我正在尝试获取未标记任何类型的帖子类型(旁白、音频等)。但我没有找到任何解决办法。我想这样做与自定义字段,但该网站有很多帖子。。。

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

我想你是在问关于邮报的事format 而不是posttype. 假设这是正确的,您可能会使用WP_Query 查询所有帖子格式为“Standard”的帖子然而,正如这张trac记录单所指出的,奇怪的是no way to query for the standard post format. 相反,您需要查询所有帖子NOT IN 任何其他格式。

Alex King put together a fairly involved snippet that does this.

在中可以找到一个更简单的代码段this Stackoverflow answer 对于类似的问题:

array(
    \'taxonomy\' => \'post_format\',
    \'field\' => \'slug\',
    \'terms\' => array(\'post-format-quote\',\'post-format-audio\',\'post-format-gallery\',\'post-format-image\',\'post-format-link\',\'post-format-video\', \'post-format-aside\'),
    \'operator\' => \'NOT IN\'
)
以上是tax_query 实例中的参数WP_Query.

结束

相关推荐

Featured posts and the loop

我正在尝试在索引中添加一个框。php在何处显示最新的3篇特色帖子。根据this tutorial, 我已将以下内容添加到functions.php:add_theme_support( \'featured-content\', array( \'filter\' => \'magdeleine_get_featured_posts\', \'max_posts\' => 3, ) ); function magdeleine