#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 (3)
Change History (12)
comment:2
Viper007Bond
— 5 years ago
- Keywords needs-patch added
- Version set to 2.7
comment:3
Viper007Bond
— 5 years ago
Attached patch should be entirely backwards compatible while adding the new functions.
comment:4
Viper007Bond
— 5 years ago
- Owner set to Viper007Bond
comment:6
Viper007Bond
— 5 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.
Viper007Bond
— 4 years ago
comment:7
Viper007Bond
— 4 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.