bp_customize_register( WP_Customize_Manager $customizer )

Fire the ‘bp_customize_register’ action when the Customizer has loaded, allowing scripts and styles to be initialized.

Description

Parameters

$customizer

(Required) Customizer instance.

Source

File: bp-core/bp-core-dependency.php

function bp_customize_register( WP_Customize_Manager $customizer ) {

	/**
	 * Fires once the Customizer has loaded, allow scripts and styles to be initialized.
	 *
	 * @since BuddyPress 2.5.0
	 *
	 * @param WP_Customize_Manager $customizer Customizer instance.
	 */
	do_action( 'bp_customize_register', $customizer );
}

Changelog

Changelog
Version Description
BuddyPress 2.5.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.