#8058 closed enhancement (fixed)
Please add get_previous_comments_link() and get_next_comments_link() functions.
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 2.7.1 | Priority: | normal |
| Severity: | minor | Version: | 2.7 |
| Component: | Comments | Keywords: | has-patch |
| Focuses: | 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 (3)
Change History (12)
#3
@
17 years ago
Attached patch should be entirely backwards compatible while adding the new functions.
#6
@
17 years ago
- Milestone changed from 2.7 to 2.8
- Resolution fixed deleted
- Status changed from closed to reopened
Yet another reason why I need to stop coding at 4 AM. The ticket was for comment paging links, not post paging.
#7
@
17 years ago
- Keywords has-patch added; needs-patch removed
- Milestone changed from 2.8 to 2.7.1
That should do the trick.
Note: See
TracTickets for help on using
tickets.
I'll take care of this later today (time for bed soon) if someone doesn't beat me to it.