$wp_query->posts_per_page WP_Query , $wp_query->max_num_pages WordPress , . , 404.php, home.php .
, $wp_query->max_num_pages, , , , . $wp_query->posts_per_page $wp_query->found_posts , $wp_query->max_num_pages.
, , - , . , functions.php:
function custom_main_query($query){
if(is_admin()) return;
if(!$query->is_main_query()) return;
if(is_home()) $query->set('posts_per_page', 3);
}
add_action('pre_get_posts', 'custom_main_query');
, :
while (have_posts()) : the_post();
the_title();
endwhile;
previous_posts_link('Newer Entries');
next_posts_link('Older Entries');
, , , Options => Reading WordPress Blog pages show at most 3.