Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created June 29, 2012 04:36
Show Gist options
  • Save claudiosanches/3015790 to your computer and use it in GitHub Desktop.
Save claudiosanches/3015790 to your computer and use it in GitHub Desktop.
Order post by modified date - Wordpress
// Order post by modified date
function dfw_query_orderby_modified($query) {
if (is_home() || is_home() && is_paged()) {
$query->query_vars['orderby'] = 'modified';
return;
}
}
add_filter('pre_get_posts', 'dfw_query_orderby_modified');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment