what is the full code of the template?
(please use the pastebin – http://codex.wordpress.org/Forum_Welcome#Posting_Code )
can you post a link to your site to illustrate the problem?
if the problem is with:
$args=array(
'post_type' =>'global',
'post_status' => 'publish',
'posts_per_page' => 114,
);
$my_query = null;
$my_query = new WP_Query($args);
//Query all prams
after these lines, try to temporarily add a control output to show the post’s number in the loop:
echo 'post number '. $my_query->current_post . '<br />';
see if that outputs all posts according to your $args.
or double check all the conditionals within your code.
hi,
It will return ‘No Results Found’!. When we give ‘posts_per_page’ more than 114 it also return ‘No Results Found’!. and having total 125 posts,now its taking only first 114 posts.Any solution for this?