WP_Customize_Section::active()publicWP 4.1.0

Check whether section is active to current Customizer preview.

Метод класса: WP_Customize_Section{}

Хуки из метода

Возвращает

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

Использование

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

Список изменений

С версии 4.1.0 Введена.

Код WP_Customize_Section::active() WP 6.8

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

	/**
	 * Filters response of WP_Customize_Section::active().
	 *
	 * @since 4.1.0
	 *
	 * @param bool                 $active  Whether the Customizer section is active.
	 * @param WP_Customize_Section $section WP_Customize_Section instance.
	 */
	$active = apply_filters( 'customize_section_active', $active, $section );

	return $active;
}