我使用此代码从post格式获取帖子。
$query = array(
\'showposts\' => 5,
\'post_type\' => \'post\',
\'tax_query\' => array(
\'relation\' => \'OR\',
array(
\'taxonomy\' => \'post_format\',
\'field\' => \'slug\',
\'terms\' => array( \'post-format-video\' )
),
),
);
数组(“post format standard”)不是。如何从标准格式提取?
非常感谢。