Changeset 35097
- Timestamp:
- 10/13/2015 01:02:47 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r35092 r35097 1166 1166 * Fires once the given feed is loaded. 1167 1167 * 1168 * The dynamic hook name, $hook, refers to the feed name. 1168 * The dynamic portion of the hook name, `$feed`, refers to the feed template name. 1169 * Possible values include: 'rdf', 'rss', 'rss2', and 'atom'. 1169 1170 * 1170 1171 * @since 2.1.0 … … 1172 1173 * @param bool $is_comment_feed Whether the feed is a comment feed. 1173 1174 */ 1174 do_action( $hook, $wp_query->is_comment_feed );1175 do_action( "do_feed_{$feed}", $wp_query->is_comment_feed ); 1175 1176 } 1176 1177
Note: See TracChangeset
for help on using the changeset viewer.