Advertisement
fahimmurshed

Random Post Functions for Astra theme

Dec 15th, 2020
1,097
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. function homepage_posts($query)
  2. {
  3.     if ($query->is_home() && $query->is_main_query())
  4.     {
  5.         $query->set( 'orderby', 'rand' );
  6.     }
  7. }
  8. add_action('pre_get_posts', 'homepage_posts');
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement