I've got a blog where I often have to update my articles. Now, I want the updated articles to be shown on the home 开发者_运维知识库page (as if they were created today). "Sticky" posts don't solve my problem and I didn't find any plugin that would do that for me. Changing the "created"-date isn't a solution as well because all posts have a url like myblog/YYYY/MM/DD/blogpost and it would change... so, any ideas? :)
Many thanks!
nevermind.
<?php global $query_string; ?>
<?php query_posts($query_string . 'order=DESC&orderby=modified'); ?>
does the job.
精彩评论