Is it possible to query all posts that don’t have an attachment?
I got curious about the SQL way of finding all posts without any attachments. Method #1 – Sub query with NOT IN Here’s my first attempt to construct such a query: global $wpdb; $sql = ” SELECT p1.ID, p1.post_title FROM {$wpdb->posts} p1 WHERE p1.post_type=”post” AND p1.post_status=”publish” AND p1.ID NOT IN ( SELECT DISTINCT p2.post_parent FROM … Read more