Skip to content

Instantly share code, notes, and snippets.

@dospuntocero
Created May 20, 2019 00:25
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 dospuntocero/24b96fdef4c1064914c16e74dc7c373c to your computer and use it in GitHub Desktop.
Save dospuntocero/24b96fdef4c1064914c16e74dc7c373c to your computer and use it in GitHub Desktop.
order wordpress posts using url variables
//passing variables like ?orderby=title
$my_query = new WP_Query( array(
'post_type' => 'project',
'post_status' => 'publish',
'orderby' => get_query_var('orderby'), // will return orderby query string variable
'order' => 'DESC',
'paged' => get_query_var('paged'),
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment