WP_Customize_Widgets::end_dynamic_sidebar( int|string $index )
Finishes keeping track of the current sidebar being rendered.
Description Description
Inserts a marker after widgets are rendered in a dynamic sidebar.
Parameters Parameters
- $index
-
(int|string) (Required) Index, name, or ID of the dynamic sidebar.
Source 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 ), intval( $this->sidebar_instance_count[ $index ] ) ); } }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.5.0 | Introduced. |