Skip to content

Instantly share code, notes, and snippets.

@polack45
polack45 / city-query.php
Created October 17, 2017 21:09 — forked from jentheo/city-query.php
Query only events in Frankfurt
<?php
//Retrieve venues that match query criteria
$args = array(
'nopaging' => true,
'post_type'=>'tribe_venue',
//Only query venues in Frankfurt
'meta_query' => array(
array(
'key' => '_VenueCity',
'value' => array( 'Frankfurt'),