Support

Account

Home Forums Front-end Issues Custom Post List filtered by ACF criteria Reply To: Custom Post List filtered by ACF criteria

  • I believe I have managed to get it to almost work but with just the two fields previous mentioned – I still am not sure how to get the third field (“sticky”) into the argument list – any further help is much appreciated.

    Thanks.

    $args = array(
    	'paged' => $paged,
    	'post_type' => 'feature',
    	'orderby' => 'published',
    	'order' => 'DESC',
    	'posts_per_page' => 5,
    	'meta_query' => array(
    	   array(
    		   'key' => 'hide_from_archive',
    		   'value' => array('0'),
    		   'compare' => 'IN',
    	   )
    	)
    );