afang22
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Template Pagination WP_Query not workinghere is a guide i found that fixed my problem:
http://www.martinish.com/blog/2009/08/how-to-paginate-a-custom-wordpress-query/3/
Forum: Themes and Templates
In reply to: Template Pagination WP_Query not workingah, i have identified the problem.
i am using my own $my_query instead of the global $wp_query
pagination only recognizes $wp_query
Forum: Themes and Templates
In reply to: Template Pagination WP_Query not workingdoes it have anything to do with my WP_Query call. Should i be using query_posts instead?
Forum: Themes and Templates
In reply to: Template Pagination WP_Query not workingyes, the <!– Previous/Next page navigation –> shows in the html source.
the only thing i can think of is that i do have the page navigation plugin installed, but i am not calling the plugin function on my template.
i’m using the default pagination, which i tested to make sure it works on the archive page.
<?php next_posts_link(‘« Older Entries’) ?>
<?php previous_posts_link(‘Newer Entries »’) ?>Forum: Themes and Templates
In reply to: Template Pagination WP_Query not workingthanks. i tried moving it but it didn’t help. the only reason why i even included that $temp variable was because of another post i read.
the problem is, the pagination buttons don’t even show up. it’s almost as it doesn’t know there are more posts to be displayed.