Skip to content

Instantly share code, notes, and snippets.

@verteb
Last active September 2, 2016 19:25
Show Gist options
  • Select an option

  • Save verteb/4125605 to your computer and use it in GitHub Desktop.

Select an option

Save verteb/4125605 to your computer and use it in GitHub Desktop.
Wordpress : Query Custom Post Type
$arguments = array(
'post_type' => 'type',
'posts_per_page' => -1,
//'meta_key'=> 'my-sort-key',
'orderby'=> 'menu_order',
'order' => 'ASC'
);
query_posts($arguments);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment