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); /**