Deprecate fakeit arg. Props Nazgul. fixes #4439
git-svn-id: https://develop.svn.wordpress.org/trunk@6114 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
8b7ae31cb9
commit
3db6ccefb0
|
@ -65,7 +65,7 @@ function the_content_rss($more_link_text='(more...)', $stripteaser=0, $more_file
|
|||
|
||||
|
||||
function the_excerpt_rss() {
|
||||
$output = get_the_excerpt(true);
|
||||
$output = get_the_excerpt();
|
||||
echo apply_filters('the_excerpt_rss', $output);
|
||||
}
|
||||
|
||||
|
|
|
@ -118,7 +118,7 @@ function the_excerpt() {
|
|||
}
|
||||
|
||||
|
||||
function get_the_excerpt($fakeit = true) {
|
||||
function get_the_excerpt($deprecated = true) {
|
||||
global $id, $post;
|
||||
$output = '';
|
||||
$output = $post->post_excerpt;
|
||||
|
|
Loading…
Reference in New Issue