Apply bloginfo_rss filter.

git-svn-id: https://develop.svn.wordpress.org/trunk@3782 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-05-18 01:23:25 +00:00
parent c352f4cad8
commit ab83e29c5c
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
function get_bloginfo_rss($show = '') {
$info = strip_tags(get_bloginfo($show));
return convert_chars($info);
return apply_filters('bloginfo_rss', convert_chars($info));
}
function bloginfo_rss($show = '') {