Support

Account

Home Forums Front-end Issues After upgrade post aggregator not working Reply To: After upgrade post aggregator not working

  • Hi @mpayumo

    I think there’s something wrong with your query. Could you please debug it like this:

    $lulus = get_posts( array(
        'post_type' => 'event',
        'post_status' => 'publish',
        'posts_per_page' => -1,
        // 'orderby' => 'date',
        // 'order' => 'ASC',
        'meta_query' => array(
            array(
                'key' => 'event_venue',
                'value' => array('Lulu\'s Lounge')
            )
        )
    ));
    
    echo "<pre>";
    var_dump($lulus);
    echo "</pre>";

    If that doesn’t show anything, then I believe your meta_query is not correct. Could you please change the value like this:

    'value' => "Lulu's Lounge",

    Thanks 🙂