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

props softmodeling.
fixes #29188.

git-svn-id: https://develop.svn.wordpress.org/trunk@29469 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2014-08-12 01:08:19 +00:00
parent fcda873946
commit 947ca94071
2 changed files with 3 additions and 3 deletions

View File

@ -2202,10 +2202,10 @@ function do_trackbacks($post_id) {
}
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 );
} 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 );
}

View File

@ -184,7 +184,7 @@ function get_the_content_feed($feed_type = null) {
if ( !$feed_type )
$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 = str_replace(']]>', ']]>', $content);
/**