Ticket #8058 (closed enhancement: fixed)
Please add get_previous_comments_link() and get_next_comments_link() functions.
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 2.7.1 |
| Component: | Comments | Version: | 2.7 |
| Severity: | minor | Keywords: | has-patch |
| Cc: |
Description
Why would they be useful? If you enable comment paging it should be possible to hide the page browser if there are no next / previous comment pages. Current solution
if ( get_query_var('cpage') > 1 || get_query_var('cpage') < get_comment_pages_count() ) {
// comment browser
}
Something like
if (get_previous_comments_link() || get_next_comments_link() ) {
//comment browser
}
would be much nicer for theme developers.
Attachments
Change History
comment:2
Viper007Bond — 3 years ago
- Keywords needs-patch added
- Version set to 2.7
I'll take care of this later today (time for bed soon) if someone doesn't beat me to it.
comment:3
Viper007Bond — 3 years ago
Attached patch should be entirely backwards compatible while adding the new functions.
- Status changed from new to closed
- Resolution set to fixed
comment:6
Viper007Bond — 3 years ago
- Status changed from closed to reopened
- Resolution fixed deleted
- Milestone changed from 2.7 to 2.8
Yet another reason why I need to stop coding at 4 AM. The ticket was for comment paging links, not post paging.
comment:7
Viper007Bond — 3 years ago
- Keywords has-patch added; needs-patch removed
- Milestone changed from 2.8 to 2.7.1
That should do the trick.
- Status changed from reopened to closed
- Resolution set to fixed
Note: See
TracTickets for help on using
tickets.

