Support

Account

Home Forums General Issues Trouble filter query on acf checkbox value and $paged Reply To: Trouble filter query on acf checkbox value and $paged

  • Hi @brotsky_pixie

    Thanks for the export file.

    Could you please try the following arguments?

    $args = array(
    	'post_type' => 'cpt',
    	'orderby'=> 'title',
    	'order' => 'ASC',
    	'paged' => $paged,
    	'meta_query' => array(
    		'relation' => 'AND',
    			array(
    				'key' => 'display_where',
    				'value' => 'speight',
    				'compare' => 'LIKE'
    			)
    	)
    );

    I also just noticed something wrong with your code. It should be something like this:

    <?php $query = new WP_Query( $args );
        if ($query->have_posts()) :
    
        while ( $query->have_posts() ) : $query->the_post();

    This page should give you more idea about it: https://www.advancedcustomfields.com/resources/query-posts-custom-fields/.

    Hope this helps!