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 bibicadotnet/f4489592b4560b7e38634e3bef10ad13 to your computer and use it in GitHub Desktop.
Save bibicadotnet/f4489592b4560b7e38634e3bef10ad13 to your computer and use it in GitHub Desktop.
Hiển trị cập nhập mới nhất ngoài trang chủ
/*
Plugin Name: Hiển trị bài viết
Description: Hiển trị cập nhập mới nhất ngoài trang chủ
*/
function cswp_update_posts( $query ) {
if ($query->is_main_query()) {
$query->set( 'orderby', 'modified' );
}
}
add_action( 'pre_get_posts', 'cswp_update_posts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment