Skip to content

Instantly share code, notes, and snippets.

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 leducson1/d9d245c2ffedbc66264d01dead2990e1 to your computer and use it in GitHub Desktop.
Save leducson1/d9d245c2ffedbc66264d01dead2990e1 to your computer and use it in GitHub Desktop.
//* sap xem bai viet theo ngay cap nhat
function orderby_modified_posts( $query ) {
if ($query->is_main_query()) {
$query->set( 'orderby', 'modified' );
}
}
add_action( 'pre_get_posts', 'orderby_modified_posts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment