WPINC_feed.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki

interface FeedInterface {
    function get_bloginfo_rss($show = '');
    function bloginfo_rss($show = '');
    function get_default_feed();
    function get_wp_title_rss( $deprecated = '–' );
    function wp_title_rss( $deprecated = '–' );
    function get_the_title_rss();
    function the_title_rss();
    function get_the_content_feed($feed_type = null);
    function the_content_feed($feed_type = null);
    function the_excerpt_rss();
    function the_permalink_rss();
    function comments_link_feed();
    function comment_guid($comment_id = null);
    function get_comment_guid($comment_id = null);
    function comment_link( $comment = null );
    function get_comment_author_rss();
    function comment_author_rss();
    function comment_text_rss();
    function get_the_category_rss($type = null);
    function the_category_rss($type = null);
    function html_type_rss();
    function rss_enclosure();
    function atom_enclosure();
    function prep_atom_text_construct($data);
    function atom_site_icon();
    function rss2_site_icon();
    function self_link();
    function feed_content_type( $type = '' );
    function fetch_feed( $url );
}