尝试此操作:使用“NOT IN”运算符排除所有rest术语。
$args = array(
\'orderby\' => \'desc\',
\'posts_per_page\' => \'4\',
\'tax_query\' => array( array(
\'taxonomy\' => \'post_format\',
\'field\' => \'slug\',
\'terms\' => array(\'post-format-aside\', \'post-format-gallery\', \'post-format-link\', \'post-format-image\', \'post-format-quote\', \'post-format-status\', \'post-format-audio\', \'post-format-chat\', \'post-format-video\'),
\'operator\' => \'NOT IN\'
) ),
);