February 3, 2010
Order Wordpress Posts by Modified Date
Method 1
Use Plugin
Method 2
Edit index.php of the current theme
Place this code
<?php query_posts($query_string . '&orderby=modified&order=desc'); ?>
before
<?php if (have_posts()) : ?>
February 3, 2010
Use Plugin
Edit index.php of the current theme
Place this code
<?php query_posts($query_string . '&orderby=modified&order=desc'); ?>
before
<?php if (have_posts()) : ?>