Opened 16 years ago
Closed 10 years ago
#10203 closed enhancement (wontfix)
posts_nav_link ignoring blank function parameters
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 2.8 |
Component: | Posts, Post Types | Keywords: | posts_nav_link |
Focuses: | template | Cc: |
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>
Attachments (1)
Change History (8)
#1
@
16 years ago
- Component changed from General to Template
- Milestone changed from Unassigned to Future Release
- Type changed from defect (bug) to enhancement
#3
@
16 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 »',' ') ?>
#4
@
14 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