I'm trying to give users to sort results as follows:
<a href="<?php bloginfo('url');?>?s=<?php echo get_search_query();?>">Relevance</a>
<a href="<?php bloginfo('url');?>?s=<?php echo get_search_query();?>&orderby=post_date&order=desc">Newest</a>
<a href="<?php bloginfo('url');?>?s=<?php echo get_search_query();?>&orderby=post_date&order=asc">Oldest</a>
Relevance and Newest work fine, but Oldest does not (it produces the same results as Newest).
Any thoughts?
Thanks in anticipation