有人知道如何从WP\\U查询循环中排除所有带标签的帖子吗?
我可以用\'tag__not_in\' 有关特定的标记ID–请参阅以下内容:
<?php $loop = new WP_Query( array( \'post_type\' => \'poetry\', \'posts_per_page\' => -1, \'orderby\' => \'date\', \'order\' => \'ASC\', \'tag__not_in\' => array(8, 9) ) ); ?>
但我想消除所有标记的帖子,而不更新
\'tag__not_in\'.
干杯
达米安