WP_Customize_Control::active()publicWP 4.0.0

Checks whether control is active to current Customizer preview.

Method of the class: WP_Customize_Control{}

Hooks from the method

Returns

true|false. Whether the control is active to the current preview.

Usage

$WP_Customize_Control = new WP_Customize_Control();
$WP_Customize_Control->active();

Changelog

Since 4.0.0 Introduced.

WP_Customize_Control::active() code WP 6.8.1

final public function active() {
	$control = $this;
	$active  = call_user_func( $this->active_callback, $this );

	/**
	 * Filters response of WP_Customize_Control::active().
	 *
	 * @since 4.0.0
	 *
	 * @param bool                 $active  Whether the Customizer control is active.
	 * @param WP_Customize_Control $control WP_Customize_Control instance.
	 */
	$active = apply_filters( 'customize_control_active', $active, $control );

	return $active;
}