Make WordPress Core


Ignore:
Timestamp:
12/04/2013 10:23:02 PM (12 years ago)
Author:
dd32
Message:

Remove the experimental RSS.JS feed, and move it to a plugin for feature development. Unprops pento. See #25639

File:
1 edited

Legend:

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

    r26449 r26644  
    10811081    else
    10821082        load_template( ABSPATH . WPINC . '/feed-atom.php' );
    1083 }
    1084 
    1085 /**
    1086  * Load either rssjs comment feed or rssjs posts feed.
    1087  *
    1088  * @since 3.8.0
    1089  *
    1090  * @param bool $for_comments True for the comment feed, false for normal feed.
    1091  */
    1092 function do_feed_rssjs( $for_comments ) {
    1093     if ( $for_comments ) {
    1094         load_template( ABSPATH . WPINC . '/feed-rssjs-comments.php' );
    1095     } else {
    1096         load_template( ABSPATH . WPINC . '/feed-rssjs.php' );
    1097     }
    10981083}
    10991084
Note: See TracChangeset for help on using the changeset viewer.