Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Created May 12, 2015 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kaiderella/6f63921c02c6a45bf67a to your computer and use it in GitHub Desktop.
Save Kaiderella/6f63921c02c6a45bf67a to your computer and use it in GitHub Desktop.
Sắp xếp bài viết theo ngày cập nhật
function order_posts_by_mod_date($orderby) {
if (is_home() || is_archive() || is_feed()) {
$orderby = "post_modified_gmt DESC";
}
return $orderby;
}
add_filter('posts_orderby', 'order_posts_by_mod_date', 999);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment