Skip to content

Instantly share code, notes, and snippets.

@lenivene
Last active May 13, 2016 09:54
Show Gist options
  • Save lenivene/81c56065663f47eb785735e16b857162 to your computer and use it in GitHub Desktop.
Save lenivene/81c56065663f47eb785735e16b857162 to your computer and use it in GitHub Desktop.
Limite number of posts for mobile WordPress
<?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