Skip to content

Instantly share code, notes, and snippets.

@oliwa
Created May 8, 2015 08:59
Show Gist options
  • Save oliwa/c9ba1f928314eaca8201 to your computer and use it in GitHub Desktop.
Save oliwa/c9ba1f928314eaca8201 to your computer and use it in GitHub Desktop.
Order 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