Created
May 8, 2015 08:59
-
-
Save oliwa/c9ba1f928314eaca8201 to your computer and use it in GitHub Desktop.
Order Query
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
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