wpseek.com
				A WordPress-centric search engine for devs and theme authors
			render_block_core_legacy_widget › WordPress Function
Since5.8.0
Deprecatedn/a
› render_block_core_legacy_widget ( $attributes )
| Parameters: | 
 | 
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Renders the 'core/legacy-widget' block.
Source
function render_block_core_legacy_widget( $attributes ) {
	global $wp_widget_factory;
	if ( isset( $attributes['id'] ) ) {
		$sidebar_id = wp_find_widgets_sidebar( $attributes['id'] );
		return wp_render_widget( $attributes['id'], $sidebar_id );
	}
	if ( ! isset( $attributes['idBase'] ) ) {
		return '';
	}
	$id_base       = $attributes['idBase'];
	$widget_key    = $wp_widget_factory->get_widget_key( $id_base );
	$widget_object = $wp_widget_factory->get_widget_object( $id_base );
	if ( ! $widget_key || ! $widget_object ) {
		return '';
	}
	if ( isset( $attributes['instance']['encoded'], $attributes['instance']['hash'] ) ) {
		$serialized_instance = base64_decode( $attributes['instance']['encoded'] );
		if ( ! hash_equals( wp_hash( $serialized_instance ), (string) $attributes['instance']['hash'] ) ) {
			return '';
		}
		$instance = unserialize( $serialized_instance );
	} else {
		$instance = array();
	}
	$args = array(
		'widget_id'   => $widget_object->id,
		'widget_name' => $widget_object->name,
	);
	ob_start();
	the_widget( $widget_key, $instance, $args );
	return ob_get_clean();
}