Opened 20 years ago
Closed 20 years ago
#1241 closed defect (bug) (fixed)
previous_post() and next_post() don't apply 'the_title' filters under the $title='yes' condition
Reported by: | wyrfel | Owned by: | ryan |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | minor | Version: | 1.5 |
Component: | Template | Keywords: | |
Focuses: | Cc: |
Description
In case that $title='yes', the following call is done:
$string .= wptexturize($nextpost->post_title);
This should be replaced to make use of the filtering system instead:
$string .= apply_filters('the_title', $nextpost->post_title);
Change History (2)
Note: See
TracTickets for help on using
tickets.
http://trac.wordpress.org/changeset/2538