invasive
Member
Posted 1 year ago #
Hi Guys,
I just found something that might be a problem for duplicate content. It seems that if you break a post up into pages (<!--nextpage--> tag) the comments that people leave are duplicated across every page.
Any idea how to get around this problem? (Like: only show comments on the "last" page of a post)
Bill
$page and $numpages are the global variables for the pages of a paginated post/page:
this will only show the comments and comment form on the last of the paginated parts:
<?php if( $page == $numpages ) comments_template( '', true ); ?>
invasive
Member
Posted 1 year ago #
That works great, thanks!