<?php
if ($post->post_date <= $post->post_modified) {
$wp_query->query('orderby=modified&order=DESC&posts_per_page=25');
}
?>
just shows the same as:
<?php
$wp_query->query('orderby=modified&order=DESC&posts_per_page=25');
?>
new = never edited post
all new “unwanted” posts have a same custum field value…. the posts i want to show have changing field values.
i tried to do some compare with post_date and date_modified, but i cannot get it working (i can only find mu-hacks.php stuff from the year 2004 that i cannot use in 2013) 🙁
in the early days you could remove the 404.php from your template folder….. i’m not sure if it still works.
Good luck