Opened 4 years ago
Last modified 2 years ago
#10203 new enhancement
posts_nav_link ignoring blank function parameters
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | Future Release |
| Component: | Template | Version: | 2.8 |
| Severity: | normal | Keywords: | posts_nav_link |
| Cc: | milanmk@… |
Description
posts_nav_link shows both next and previous links including link seperator even though the respective function parameters are blank.
<div id="page-nav-prev"><?php posts_nav_link('', '« Previous Page', '') ?></div>
<div id="page-nav-next"><?php posts_nav_link('', '', 'Next Page »') ?></div>
Change History (4)
- Component changed from General to Template
- Milestone changed from Unassigned to Future Release
- Type changed from defect (bug) to enhancement
comment:3
jeremyclark13 — 4 years ago
A workaround for now is to set the paramaters to a blank space.
<?php posts_nav_link(' ',' ','« Older Entries') ?>
<?php posts_nav_link(' ','Newer Entries »',' ') ?>
comment:4
chollaball — 2 years ago
Issue still occurs in v 3.0. Did not occur in v 2.7. I would classify as a bug not an enhancement since it used to work. Workaround as described above is still valid.
Note: See
TracTickets for help on using
tickets.

see #10204