Skip to content

Instantly share code, notes, and snippets.

@oliwa
Last active December 5, 2018 07:11
Show Gist options
  • Save oliwa/37fb11e18a891db00155 to your computer and use it in GitHub Desktop.
Save oliwa/37fb11e18a891db00155 to your computer and use it in GitHub Desktop.
Order a Query
<?
if(isset($_get['order']) == 'asc'){
query_posts('order=asc');
}else if(isset($_get['order']) == 'desc'){
query_posts('order=desc');
}
?>
<a href="?order=ASC">Ascending</a>
<a href="?order=DESC">Descending</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment