我想你是在问关于邮报的事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
.