WP_Customize_Control::active_callback() public WP 4.0.0
Default callback used when invoking WP_Customize_Control::active().
Subclasses can override this with their specific logic, or they may provide an 'active_callback' argument to the constructor.
{} It's a method of the class: WP_Customize_Control{}
No Hooks.
Return
true. Always true.
Usage
$WP_Customize_Control = new WP_Customize_Control(); $WP_Customize_Control->active_callback();
Changelog
Since 4.0.0 | Introduced. |
Code of WP_Customize_Control::active_callback() WP Customize Control::active callback WP 5.6
public function active_callback() {
return true;
}