Show posts where checkbox meta_query is checked/true
Show all posts where the post meta field checkbox is checked requires adding a meta_query to your query arguments.
1 2 3 |
$args = array( 'numberposts' => '5','post_status' => 'publish', 'post_type' => 'my-custom-post', 'meta_query' => array('relation' => 'AND', array('key' => 'my_custom_checkbox_meta_field','value' => FALSE,'compare' => '!='))); $recent_checked_posts = wp_get_recent_posts($args); |