Guest User

Untitled

a guest
Aug 24th, 2015
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. if( !function_exists( 'marstheme_jetpack_on_mobile_setup_args' ) ){
  2.     /**
  3.      * Display the Load More button on mobile - Jetpack Infinite scroll.
  4.      * @param unknown_type $args
  5.      * @return unknown
  6.      */
  7.     function marstheme_jetpack_on_mobile_setup_args( $args ) {
  8.         if( wp_is_mobile() ){
  9.             $args['type'] = 'click';
  10.         }
  11.         return $args;
  12.     }
  13.     add_filter( 'marstheme_jetpack_setup_args' , 'marstheme_jetpack_on_mobile_setup_args', 20, 1);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment