Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function astra_custom_blog_order_by_last_update( $query ) {
- if ( $query->is_home() && $query->is_main_query() ) {
- $query->set( 'orderby', 'modified' );
- $query->set( 'order', 'DESC' );
- }
- }
- add_action( 'pre_get_posts', 'astra_custom_blog_order_by_last_update' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement