Support

Account

Forum Replies Created

  • 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

Viewing 1 post (of 1 total)