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 Description
Parameters Parameters
- $customizer
-
(Required) Customizer instance.
Source 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 2.5.0
*
* @param WP_Customize_Manager $customizer Customizer instance.
*/
do_action( 'bp_customize_register', $customizer );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.5.0 | Introduced. |