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

In this article

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.

Parameters

$supportsbool
Whether the active theme supports the given feature. Default true.
$argsarray
Array of arguments for the feature.
$featurestring
The theme feature.

Source

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

Changelog

VersionDescription
3.4.0Introduced.

User Contributed Notes

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