Home › Forums › General Issues › Meta-query is not working › Reply To: Meta-query is not working
I’m trying to run a query that only displays items that meet a condition in an Advanced Custom Fields select box, but I’m getting nothing. Here’s my query. Any help would be appreciated:
<?php $args = array(
‘post_type’ => ‘home_plans’,
‘orderby’=> ‘date’,
‘order’ => ‘rand’,
‘numberposts’ => ’12’,
‘meta_query’ => array(
‘relation’ => ‘AND’,
array(
‘key’ => ‘display_where’,
‘value’ => ‘here’,
‘compare’ => ‘LIKE’
)
)
); ?>
<div id=”ms-container” class=”row archive”>
<ul id=”posts_list”>
<?php $recent_posts = wp_get_recent_posts( $args );
$selected = get_field(‘display_where’);
foreach( $recent_posts as $recent ){
get_template_part( ‘template-parts/plan-archive-loop’, get_post_format() );
}
//wp_reset_postdata();
?>
</div>
Regards,
from VidyaVox Jio4GVoice for PC
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.