select all posts where meta-key doesn't exist or has certain value
-
Hello,
i create some posts and added a meta-value with the key “example”.
now i want to select all posts where this meta-key is empty or have the value “test”
how can i do that?
here i can either use a meta-key or not but not both…
$args = array( 'posts_per_page' => 5, 'offset' => 0, 'category' => '', 'category_name' => '', 'orderby' => 'title', 'order' => 'ASC', 'include' => '', 'exclude' => '', 'meta_key' => '', 'meta_value' => '', 'post_type' => 'mytype', 'post_mime_type' => '', 'post_parent' => '', 'author' => '', 'post_status' => 'publish', 'suppress_filters' => true ); get_posts($args);
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘select all posts where meta-key doesn't exist or has certain value’ is closed to new replies.