Opened 4 years ago

Last modified 2 years ago

#10203 new enhancement

posts_nav_link ignoring blank function parameters

Reported by: milanmk 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('', '&#171; Previous Page', '') ?></div>
<div id="page-nav-next"><?php posts_nav_link('', '', 'Next Page &#187;') ?></div>

Change History (4)

  • Component changed from General to Template
  • Milestone changed from Unassigned to Future Release
  • Type changed from defect (bug) to enhancement

see #10204

  • Cc milanmk@… added

A workaround for now is to set the paramaters to a blank space.

<?php posts_nav_link(' ',' ','&laquo; Older Entries') ?>
<?php posts_nav_link(' ','Newer Entries &raquo;',' ') ?>

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.