WordPress 技巧:获取未打标签的文章

直接来代码,可以使用WP_Querytax_query参数来实现:

$wpjam_query 	= new WP_Query([
	'post_status'	=> 'publish',
	'tax_query'		=> [
		[
			'taxonomy'	=> 'post_tag',
			'field'		=> 'id',
			'operator'	=> 'NOT EXISTS'
		]
	]
]);

来自:https://blog.wpjam.com/m/query-untagged-posts-in-wordpress/