diff --git a/wp-includes/deprecated.php b/wp-includes/deprecated.php index c83bca6a8a..a7efb91a13 100644 --- a/wp-includes/deprecated.php +++ b/wp-includes/deprecated.php @@ -1691,8 +1691,6 @@ function the_author_ID() { * @subpackage Feed * @since 0.71 * @uses apply_filters() Calls 'the_content_rss' on the content before processing. - * @see get_the_content() For the $more_link_text, $stripteaser, and $more_file - * parameters. * * @deprecated 2.9.0 * @deprecated Use the_content_feed() @@ -1706,7 +1704,7 @@ function the_author_ID() { */ function the_content_rss($more_link_text='(more...)', $stripteaser=0, $more_file='', $cut = 0, $encode_html = 0) { _deprecated_function( __FUNCTION__, '2.9', 'the_content_feed' ); - $content = get_the_content($more_link_text, $stripteaser, $more_file); + $content = get_the_content($more_link_text, $stripteaser); $content = apply_filters('the_content_rss', $content); if ( $cut && !$encode_html ) $encode_html = 2;