On this page
is_feed( string|string[] $feeds = '' ): bool
Determines whether the query is for a feed.
Description
For more information on this and similar theme functions, check out the Conditional Tags article in the Theme Developer Handbook.
Parameters
$feedsstring|string[] Optional-
Feed type or array of feed types to check against.
Default:
''
Return
bool Whether the query is for a feed.
Source
File: wp-includes/query.php. View all references
function is_feed( $feeds = '' ) {
global $wp_query;
if ( ! isset( $wp_query ) ) {
_doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1.0' );
return false;
}
return $wp_query->is_feed( $feeds );
}
Related
Uses
| Uses | Description |
|---|---|
| WP_Query::is_feed() wp-includes/class-wp-query.php | Is the query for a feed? |
| __() wp-includes/l10n.php | Retrieves the translation of $text. |
| _doing_it_wrong() wp-includes/functions.php | Marks something as being incorrectly called. |
Used By
| Used By | Description |
|---|---|
| wp_should_load_separate_core_block_assets() wp-includes/script-loader.php | Checks whether separate styles should be loaded for core blocks on-render. |
| WP::handle_404() wp-includes/class-wp.php | Set the Headers for 404, if nothing is found for requested URL. |
| wp_die() wp-includes/functions.php | Kills WordPress execution and displays HTML page with an error message. |
| gallery_shortcode() wp-includes/media.php | Builds the Gallery shortcode output. |
| wp_playlist_shortcode() wp-includes/media.php | Builds the Playlist shortcode output. |
| redirect_canonical() wp-includes/canonical.php | Redirects incoming links to the proper URL based on the site url. |
Changelog
| Version | Description |
|---|---|
| 1.5.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/is_feed