Can one exclude the latest post from the loop using "$query->set"? I'd like to do something along the following lines:
function excludelatestpost($query) {
if ($query->is_home) {
$query->set('this would be the tricky bit');
}
return $query;
}
add_filter('pre_get_posts','excludelatestpost');
Any clues?