Advertisement
pusatdata

Homepage Random Post Code

Mar 15th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Tinggal paste kode berikut di functions.php theme:
  2.  
  3. add_action('pre_get_posts', 'my_pre_get_posts');
  4. function my_pre_get_posts($query) {
  5. if ( $query->is_home() && $query->is_main_query() ) {
  6. $query->set('orderby', 'rand');
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement