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.


Top ↑

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 );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.5.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.