[wp-trac] [WordPress Trac] #10539: Comments Pagination Links disappear if you separate comments from pings
WordPress Trac
wp-trac at lists.automattic.com
Mon Aug 3 23:15:31 UTC 2009
#10539: Comments Pagination Links disappear if you separate comments from pings
--------------------------+-------------------------------------------------
Reporter: aldolat | Owner:
Type: defect (bug) | Status: new
Priority: normal | Milestone: Unassigned
Component: General | Version:
Severity: normal | Keywords:
--------------------------+-------------------------------------------------
If you try to separate the comments from pings (trackback and pinkbacks),
the links to comments pagination (Previous and Next Comments) disappear if
they are located '''after''' the call to wp_list_comments('type=pings')
function.
For example, after this:
{{{
<ol class="commentlist">
<?php wp_list_comments('type=comment');?>
</ol>
}}}
paste:
{{{
<ol class="commentlist">
<?php wp_list_comments('type=pings'); ?>
</ol>
}}}
Now, you should not see the links to Previous and Next comments.
Instead, you should continue to see the links located before the
wp_list_comments.
--
Ticket URL: <http://core.trac.wordpress.org/ticket/10539>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list