[url=http://wnmufm.org]My website[/url]
Under the Program Highlights section (under the main featured section) I am trying to get the posts to show up in ascending order (oldest post at top and newest post on bottom). Right now I can with the help of a plug-in, but I know there’s got to be an easier way. The original code is:
[code]<?php query_posts(“caller_get_posts=1&showposts=3&category_name=”.get_option(‘cover_wp_thisweek_cat’, ‘ThisWeek’)); $i = 1; ?>[/code]
What do I need to add so those three posts show up oldest to newest for that category only?
Add the [code]&order=DESC[/code] to the [code]query_posts[/code] query string.