Hello All..
I need help with wordpress,
I have figured out how to show certian posts with category in a page..
but the page numbers are not working and i cant figure out why.
Here is the code to query and show categories in california
for some reason the page numbers at the bottom are not working.. does anyone know what code i need to add?
here is the page code, next and prev
thank you!
I need help with wordpress,
I have figured out how to show certian posts with category in a page..
but the page numbers are not working and i cant figure out why.
Here is the code to query and show categories in california
Code:
<?php query_posts('category_name=california'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
here is the page code, next and prev
Code:
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
thank you!
Comment