From 0929025aeae7b77b94b58c71972742b5bde36ea4 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Tue, 5 Jan 2016 16:35:26 +0000 Subject: [PATCH] Docs: Move the hook doc for the `the_title` filter in `Walker_Page::start_el()` to directly precede the `apply_filters()` line. See #32246. Built from https://develop.svn.wordpress.org/trunk@36175 git-svn-id: http://core.svn.wordpress.org/trunk@36142 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-walker-page.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-walker-page.php b/wp-includes/class-walker-page.php index 16409f65df..57a26f4f88 100644 --- a/wp-includes/class-walker-page.php +++ b/wp-includes/class-walker-page.php @@ -131,12 +131,12 @@ class Walker_Page extends Walker { $args['link_before'] = empty( $args['link_before'] ) ? '' : $args['link_before']; $args['link_after'] = empty( $args['link_after'] ) ? '' : $args['link_after']; - /** This filter is documented in wp-includes/post-template.php */ $output .= $indent . sprintf( '
  • %s%s%s', $css_classes, get_permalink( $page->ID ), $args['link_before'], + /** This filter is documented in wp-includes/post-template.php */ apply_filters( 'the_title', $page->post_title, $page->ID ), $args['link_after'] ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 1f56044672..0e1d5b4d9e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36174'; +$wp_version = '4.5-alpha-36175'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.