Skip to content

Instantly share code, notes, and snippets.

@ph
Created November 25, 2011 16:56
Show Gist options
  • Save ph/1393967 to your computer and use it in GitHub Desktop.
Save ph/1393967 to your computer and use it in GitHub Desktop.
wp_query
<?php
$query = new WP_Query();
$posts = $query->query(array(
'post_type' => 'post',
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC',
'meta_query' => array(
'key' => '_test',
'value' => 2,
'compare' => '=',
'type' => 'NUMERIC'
)
)); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment