WP_Customize_Panel::active_callback()publicWP 4.1.0

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() code WP 6.5.2

public function active_callback() {
	return true;
}