b0y-101 Mini Shell


Current Path : E:/www/km/wp2/wp-content/plugins/gutenberg/lib/compat/wordpress-6.2/
File Upload :
Current File : E:/www/km/wp2/wp-content/plugins/gutenberg/lib/compat/wordpress-6.2/widgets.php

<?php
/**
 * Core Widget APIs for WP 6.2.
 *
 * @package gutenberg
 */

if ( ! function_exists( '_wp_block_theme_register_classic_sidebars' ) ) {
	/**
	 * Registers the previous theme's sidebars for the block themes.
	 *
	 * @since 6.2.0
	 * @access private
	 *
	 * @global array $wp_registered_sidebars Registered sidebars.
	 */
	function _wp_block_theme_register_classic_sidebars() {
		global $wp_registered_sidebars;

		if ( ! wp_is_block_theme() ) {
			return;
		}

		$legacy_sidebars = get_theme_mod( 'wp_classic_sidebars' );
		if ( empty( $legacy_sidebars ) ) {
			return;
		}

		// Don't use `register_sidebar` since it will enable the `widgets` support for a theme.
		foreach ( $legacy_sidebars as $sidebar ) {
			$wp_registered_sidebars[ $sidebar['id'] ] = $sidebar;
		}
	}
	add_action( 'widgets_init', '_wp_block_theme_register_classic_sidebars' );
}

Copyright © 2019 by b0y-101