Skip to content

Instantly share code, notes, and snippets.

@pedroelsner
Created August 21, 2012 19:03
Show Gist options
  • Save pedroelsner/3418369 to your computer and use it in GitHub Desktop.
Save pedroelsner/3418369 to your computer and use it in GitHub Desktop.
<?php
$query = array(
'post_type' => 'servicos',
'post_status' => 'published',
'order' => 'ASC',
'orderby' => 'title',
'meta_query' => array(
array(
'key' => '_thumbnail_id',
'value' => 1,
'compare' => '>='
)
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment