Make WordPress Core


Ignore:
Timestamp:
02/25/2005 03:52:28 PM (20 years ago)
Author:
ryan
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/feed-functions.php

    r2316 r2380  
    11<?php
    22
    3 function bloginfo_rss($show='') {
    4     $info = strip_tags(get_bloginfo($show));
    5     echo convert_chars($info);
     3function get_bloginfo_rss($show = '') {
     4    $info = strip_tags(get_bloginfo($show));
     5    return convert_chars($info);
     6}
     7
     8function bloginfo_rss($show = '') {
     9    echo get_bloginfo_rss();
    610}
    711
Note: See TracChangeset for help on using the changeset viewer.