apply_filters( "current_theme_supports-{$feature}", bool , array $args , string $feature )
Filters whether the current theme supports a specific feature.
Description
The dynamic portion of the hook name, $feature
, refers to the specific theme feature. Possible values include ‘post-formats’, ‘post-thumbnails’, ‘custom-background’, ‘custom-header’, ‘menus’, ‘automatic-feed-links’, ‘html5’, ‘starter-content’, and ‘customize-selective-refresh-widgets’.
Parameters
-
true Whether the current theme supports the given feature. Default true.
- $args
-
Array of arguments for the feature.
- $feature
-
The theme feature.
Source
File: wp-includes/theme.php
Changelog
Version | Description |
---|---|
WP-3.4.0 | Introduced. |