Is there a function to display the current comment page? I could grep it from $_SERVER and then the request uri.
Is there a function to display the current comment page? I could grep it from $_SERVER and then the request uri.
I've not tried it but you might want to see if the is_paged() conditional will work with comments.
I need the numeric value of the current page in wordpress!
if you have a code like this
<?php if (have_posts()) : ?>
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("category_name=catname&showposts=3&paged=$paged"); ?>
you can use
<?php if ( $paged == 1 ) { somecode } ?>
This topic has been closed to new replies.