WP_Customize_Widgets::end_dynamic_sidebar() WordPress Method

The WP_Customize_Widgets::end_dynamic_sidebar() method is used to end the display of a dynamic sidebar. This method is used internally by WordPress.

WP_Customize_Widgets::end_dynamic_sidebar( int|string $index ) #

Finishes keeping track of the current sidebar being rendered.


Description

Inserts a marker after widgets are rendered in a dynamic sidebar.


Top ↑

Parameters

$index

(int|string)(Required)Index, name, or ID of the dynamic sidebar.


Top ↑

Source

File: wp-includes/class-wp-customize-widgets.php

	public function end_dynamic_sidebar( $index ) {
		array_shift( $this->current_dynamic_sidebar_id_stack );
		if ( ! $this->manager->selective_refresh->is_render_partials_request() ) {
			printf( "\n<!--dynamic_sidebar_after:%s:%d-->\n", esc_html( $index ), (int) $this->sidebar_instance_count[ $index ] );
		}
	}


Top ↑

Changelog

Changelog
VersionDescription
4.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More