See topic. And I still want to know how to display the current comment page number: http://wordpress.org/support/topic/291749?replies=3
No ideas?!
See topic. And I still want to know how to display the current comment page number: http://wordpress.org/support/topic/291749?replies=3
No ideas?!
you can use something like
<?php if (have_posts()) : ?>
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("category_name=catname&showposts=3&paged=$paged"); ?>
<?php if ( $paged == 1 ) { ?>This topic has been closed to new replies.