Add get_bloginfo_rss(). http://mosquito.wordpress.org/view.php?id=971 Hat tip: nbachiyski

git-svn-id: https://develop.svn.wordpress.org/trunk@2380 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-02-25 15:52:28 +00:00
parent f0b153775a
commit e9298b1772
1 changed files with 7 additions and 3 deletions

View File

@ -1,8 +1,12 @@
<?php
function bloginfo_rss($show='') {
$info = strip_tags(get_bloginfo($show));
echo convert_chars($info);
function get_bloginfo_rss($show = '') {
$info = strip_tags(get_bloginfo($show));
return convert_chars($info);
}
function bloginfo_rss($show = '') {
echo get_bloginfo_rss();
}
function the_title_rss() {