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?