Remove API component support.
beans_remove_api_component_support( string $feature )
Return: (bool) Will always return true.
Parameters
Name | Type | Required | Default | Description |
---|---|---|---|---|
$feature | string | true | - | The feature to remove. |
Source
function beans_remove_api_component_support( $feature ) {
global $_beans_api_components_support;
unset( $_beans_api_components_support[ $feature ] );
return true;
}