Support

Account

Home Forums General Issues Issue using post_object field value in WP_Query Reply To: Issue using post_object field value in WP_Query

  • I missed something extremely important in your OP, the field is a post object field

    
    $args = array(
    	'numberposts' => -1,
    	'post_type' => 'post',
    	'meta_key' => 'show_venue',
    	'meta_value' => $post->ID, // post objects store the post ID
    	'order' => 'ASC'
    );