I have come up with 2 diffrent things that I am pretty certain should work. But yet they dont..
here is my first attempt:
- Code: Select all
<a href="http://mylocalhost/mysite/?orderby=date&order=asc" class="btn">A - Z</a>
<a href="http://mylocalhost/mysite/?orderby=date&order=dsc" class="btn">Z - A</a>
<a href="http://mylocalhost/mysite/games/league-of-legends/" class="btn">New</a>
<a href="http://mylocalhost/mysite/games/league-of-legends/" class="btn">Old</a>
<a href="http://mylocalhost/mysite/games/league-of-legends/" class="btn">Popular</a>
here is my second attempt:
- Code: Select all
<div class="sort">
Sort by
<select onclick="if (this.value) { document.location = this.value; }">
<option value="" selected="selected">Latest first</option>
<option value="<?php echo $short_page_url; ?>?orderby=date">Oldest first</option>
<option value="<?php echo $short_page_url; ?>?orderby=title">Titles A-Z</option>
</select>
</div>
What could the problem be?