Skip to content

Instantly share code, notes, and snippets.

@traversal
Created April 13, 2015 00:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save traversal/f0db969a8732f5df9ad0 to your computer and use it in GitHub Desktop.
Save traversal/f0db969a8732f5df9ad0 to your computer and use it in GitHub Desktop.
Filter By Custom Field
<?php
$args = array(
'meta_query' => array(
array(
'key' => 'fields.type',
'value' => 'bnb',
'compare' => '=',
)
)
)
foreach ( $zone->incoming_hotels( $args ) as $hotel ) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment