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:
parent
f0b153775a
commit
e9298b1772
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user