Support

Account

Home Forums Front-end Issues Query with Meta_Query Not Working Reply To: Query with Meta_Query Not Working

  • I resolved this by implementing what I read here. This is what I changed …

    'meta_query' = array(
                    array(
                        'key'       => 'partner_type',
                        'value'     => '"'. $search['type'] .'"',
                        'compare'   => 'LIKE',
                    )
    );