Make WordPress Core

Changeset 36175


Ignore:
Timestamp:
01/05/2016 04:34:25 PM (9 years ago)
Author:
ocean90
Message:

Docs: Move the hook doc for the the_title filter in Walker_Page::start_el() to directly precede the apply_filters() line.

See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-walker-page.php

    r36069 r36175  
    132132        $args['link_after'] = empty( $args['link_after'] ) ? '' : $args['link_after'];
    133133
    134         /** This filter is documented in wp-includes/post-template.php */
    135134        $output .= $indent . sprintf(
    136135            '<li class="%s"><a href="%s">%s%s%s</a>',
     
    138137            get_permalink( $page->ID ),
    139138            $args['link_before'],
     139            /** This filter is documented in wp-includes/post-template.php */
    140140            apply_filters( 'the_title', $page->post_title, $page->ID ),
    141141            $args['link_after']
Note: See TracChangeset for help on using the changeset viewer.