Is possible to order articles? When I add a new article it's on the top of the list. If I have to put at the last position, how caa I do?
Thanks
Is possible to order articles? When I add a new article it's on the top of the list. If I have to put at the last position, how caa I do?
Thanks
You would need to add a custom query to the relevant template file in your theme to reverse the post order. Something like:
<?php query_posts($query_string.'orderby=date&&order=ASC');?>
Esmi, thanks for your speed answer.
I tried to search something like your string (?php query_posts($query_string.'orderby=date&&order=ASC');?) but I didn't find.
Do you think I shoud study wp-app.php file?
Use the link I gave above.
This topic has been closed to new replies.