From 947ca940712b39b6431f1ea6645b82668999ff7a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 12 Aug 2014 01:08:19 +0000 Subject: [PATCH] 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 --- src/wp-includes/comment.php | 4 ++-- src/wp-includes/feed.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/comment.php b/src/wp-includes/comment.php index 516c1eb1b5..a4cc7e2b2c 100644 --- a/src/wp-includes/comment.php +++ b/src/wp-includes/comment.php @@ -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 ); } diff --git a/src/wp-includes/feed.php b/src/wp-includes/feed.php index 972e711ff8..560dc61ef7 100644 --- a/src/wp-includes/feed.php +++ b/src/wp-includes/feed.php @@ -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); /**