WORDPRESS查询没有添加文章标签的文章ID

为了查询哪些文章没有添加文章标签可以用以下查询语句查询文章ID select id from wp_posts where id not in (select object_id FROM wp_term_relationships where wp_term_relationships.term_taxonomy_id in(select wp_term_taxonomy.term_taxono...