apply_filters( "current_theme_supports-{$feature}", bool $supports, array $args, string $feature )

Filters whether the active theme supports a specific feature.


Description

The dynamic portion of the hook name, $feature, refers to the specific theme feature. See add_theme_support() for the list of possible values.


Top ↑

Parameters

$supports bool
Whether the active theme supports the given feature. Default true.
$args array
Array of arguments for the feature.
$feature string
The theme feature.

Top ↑

Source

File: wp-includes/theme.php. View all references

return apply_filters( "current_theme_supports-{$feature}", true, $args, $_wp_theme_features[ $feature ] ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores


Top ↑

Changelog

Changelog
Version Description
3.4.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.