List of posts where custom field is empty?
-
I’m currently using this to retrieve a list with posts that have a certain custom fields value:
<?php $querystr = " SELECT $wpdb->posts.* FROM $wpdb->posts, $wpdb->postmeta WHERE $wpdb->posts.ID = $wpdb->postmeta.post_id AND $wpdb->postmeta.meta_key = 'type' AND $wpdb->postmeta.meta_value = VALUE ORDER BY $wpdb->posts.post_date DESC "; $pageposts = $wpdb->get_results($querystr, OBJECT); ?>
How can I however list posts where the custom field is empty? I’ve already tried to put:
AND $wpdb->postmeta.meta_value = ”
AND $wpdb->postmeta.meta_value = nullbut those don’t work. Any help would be greatly appreciated!
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘List of posts where custom field is empty?’ is closed to new replies.