WP_Customize_Panel::active_callback()
Default callback used when invoking WP_Customize_Panel::active().
Subclasses can override this with their specific logic, or they may provide an 'active_callback' argument to the constructor.
Method of the class: WP_Customize_Panel{}
No Hooks.
Return
true|false
. Always true.
Usage
$WP_Customize_Panel = new WP_Customize_Panel(); $WP_Customize_Panel->active_callback();
Changelog
Since 4.1.0 | Introduced. |
WP_Customize_Panel::active_callback() WP Customize Panel::active callback code WP 6.4.1
public function active_callback() { return true; }