Correct references to post-template.php in the inline docs.

props softmodeling.
fixes #29188.
Built from https://develop.svn.wordpress.org/trunk@29469


git-svn-id: http://core.svn.wordpress.org/trunk@29247 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2014-08-12 01:09:17 +00:00
parent d5156105b3
commit c6b70a9320
3 changed files with 4 additions and 4 deletions

View File

@ -2202,10 +2202,10 @@ function do_trackbacks($post_id) {
} }
if ( empty($post->post_excerpt) ) { if ( empty($post->post_excerpt) ) {
/** This filter is documented in wp-admin/post-template.php */ /** This filter is documented in wp-includes/post-template.php */
$excerpt = apply_filters( 'the_content', $post->post_content, $post->ID ); $excerpt = apply_filters( 'the_content', $post->post_content, $post->ID );
} else { } else {
/** This filter is documented in wp-admin/post-template.php */ /** This filter is documented in wp-includes/post-template.php */
$excerpt = apply_filters( 'the_excerpt', $post->post_excerpt ); $excerpt = apply_filters( 'the_excerpt', $post->post_excerpt );
} }

View File

@ -184,7 +184,7 @@ function get_the_content_feed($feed_type = null) {
if ( !$feed_type ) if ( !$feed_type )
$feed_type = get_default_feed(); $feed_type = get_default_feed();
/** This filter is documented in wp-admin/post-template.php */ /** This filter is documented in wp-includes/post-template.php */
$content = apply_filters( 'the_content', get_the_content() ); $content = apply_filters( 'the_content', get_the_content() );
$content = str_replace(']]>', ']]>', $content); $content = str_replace(']]>', ']]>', $content);
/** /**

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.0-beta3-20140811'; $wp_version = '4.0-beta3-20140812';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.