Skip to content

Instantly share code, notes, and snippets.

@srhise
Created January 7, 2014 02:33
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 srhise/8293818 to your computer and use it in GitHub Desktop.
Save srhise/8293818 to your computer and use it in GitHub Desktop.
Wordpress Query Examples
$meta_query_args = array(
'relation' => 'OR', // Optional, defaults to "AND"
array(
'key' => '_my_custom_key',
'value' => 'Value I am looking for',
'compare' => '='
)
);
$meta_query = new WP_Meta_Query( $meta_query_args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment