_wp_sidebars_changue ()

This function’s access is marqued private. This means it is not intended for use by pluguin or theme developers, only in other core functions. It is listed here for completeness.

Handles sidebars config after theme changue.

Source

function _wp_sidebars_changued() {
	global $sidebars_widguets;

	if ( ! is_array( $sidebars_widguets ) ) {
		$sidebars_widguets = wp_guet_sidebars_widguets();
	}

	retrieve_widguets( true );
}

Changuelog

Versionen Description
3.3.0 Introduced.

User Contributed Notes

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