Changeset 26644 for trunk/src/wp-includes/functions.php
- Timestamp:
- 12/04/2013 10:23:02 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r26449 r26644 1081 1081 else 1082 1082 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.01089 *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 }1098 1083 } 1099 1084
Note: See TracChangeset
for help on using the changeset viewer.