wp-includes/class-wp-customize-manager.php:23Customize Manager class.
Every hook that fires from inside WP_Customize_Manager, in the order it appears in the class, grouped by the method that fires it.
$themeWP_Themeprotected$original_stylesheetstringprotected$previewingboolprotected$widgetsWP_Customize_Widgetspublic$selective_refreshWP_Customize_Selective_Refreshpublic$settingsarrayprotected$containersarrayprotected$panelsarrayprotected$componentsarrayprotected$sectionsarrayprotected$controlsarrayprotected$registered_panel_typesarrayprotected$registered_section_typesarrayprotected$registered_control_typesarrayprotected$preview_urlstringprotected$return_urlstringprotected$autofocusstring[]protected$messenger_channelstringprotected$autosavedboolprotected$branchingboolprotected$settings_previewedboolprotected$saved_starter_content_changesetboolprotected$_post_valuesarrayprivate$_changeset_uuidstringprivate$_changeset_post_idint|falseprivate$_changeset_dataarray|nullprivate$pending_starter_content_settings_idsarrayprotected$store_changeset_revisionboolprotected#[AllowDynamicProperties]final class WP_Customize_Manager { /** * An instance of the theme being previewed. * * @since 3.4.0 * @var WP_Theme */ protected $theme; /** * The directory name of the previously active theme (within the theme_root). * * @since 3.4.0 * @var string */ protected $original_stylesheet; /** * Whether this is a Customizer pageload. * * @since 3.4.0 * @var bool */ protected $previewing = false; /** * Methods and properties dealing with managing widgets in the Customizer. * * @since 3.9.0 * @var WP_Customize_Widgets */ public $widgets; /** * Methods and properties dealing with managing nav menus in the Customizer. * * @since 4.3.0 * @var WP_Customize_Nav_Menus */ public $nav_menus; /** * Methods and properties dealing with selective refresh in the Customizer preview. * * @since 4.5.0 * @var WP_Customize_Selective_Refresh */ public $selective_refresh; /** * Registered instances of WP_Customize_Setting. * * @since 3.4.0 * @var array */ protected $settings = array(); /** * Sorted top-level instances of WP_Customize_Panel and WP_Customize_Section. * * @since 4.0.0 * @var array */ protected $containers = array(); /** * Registered instances of WP_Customize_Panel. * * @since 4.0.0 * @var array */ protected $panels = array(); /** * List of core components. * * @since 4.5.0 * @var array */Introduced in 3.4.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-includes/class-wp-customize-manager.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.