Plugin "WP Page Numbers" VS "posts_per_page"
-
Hello!
I have problem with set up “posts per page” when I use “WP Page Numbers” plugin.
I use that code to specify how many posts I want to display on specific category:<?php global $query_string; parse_str( $query_string, $args ); if (is_category('blog')){ $args['posts_per_page'] = 5; query_posts($args); } ?>
When I change page number for “NEXT” there is shown text: “Nothing found”
Can anybody help with this problem?
How to set-up “posts per page”, when use this plugin?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Plugin "WP Page Numbers" VS "posts_per_page"’ is closed to new replies.