Last active
May 13, 2016 09:54
-
-
Save lenivene/81c56065663f47eb785735e16b857162 to your computer and use it in GitHub Desktop.
Limite number of posts for mobile WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'pre_get_posts', 'change_limit_mobile' ); | |
function change_limit_mobile( $query ){ | |
$limit = 4; | |
if ( wp_is_mobile() && $query->is_main_query() ){ | |
set_query_var( 'posts_per_page', $limit ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment