Support

Account

Home Forums General Issues Sort By Select Field Reply To: Sort By Select Field

  • I was able to solve this myself.

    $location = $_GET["location"];
    
    $args = array(
    'numberposts'   => -1,
    'post_type'     => 'post',
    'meta_query'    => array(
        array(
            'key'       => 'city',
            'value'     => ''.$location.'',
            'compare'   => 'LIKE',
        )
    )
    );