Support

Account

Home Forums Front-end Issues Query by meta key that is an object Reply To: Query by meta key that is an object

  • Sorry… I had an answer by this thread
    http://support.advancedcustomfields.com/forums/topic/meta-query-for-post-object/
    and by this resource
    http://www.advancedcustomfields.com/resources/querying-relationship-fields/

    
    $autore = get_the_ID();
    			
    $args = array(
    	'post_type' => 'libri',
    	'post_status' => 'publish',
    	'order'	=> 'DESC',
    	'orderby' => 'date',
    	'ignore_sticky_posts' => true,
    	'posts_per_page' => -1,
    	'meta_query' => array(
    		array(
    			'key' => 'autori',
    			'value' => '"' . $autore . '"',
    			'compare' => 'LIKE'
    		))
    	);
    
    $libri = new WP_Query( $args );