Advertisement
fahimmurshed

Astra Blog Posts order_by_last_update

Jul 27th, 2023
1,305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. function astra_custom_blog_order_by_last_update( $query ) {
  2.     if ( $query->is_home() && $query->is_main_query() ) {
  3.         $query->set( 'orderby', 'modified' );
  4.         $query->set( 'order', 'DESC' );
  5.     }
  6. }
  7. add_action( 'pre_get_posts', 'astra_custom_blog_order_by_last_update' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement