WP_Customize_Widgets::start_dynamic_sidebar() public WP 4.5.0
Begins keeping track of the current sidebar being rendered.
Insert marker before widgets are rendered in a dynamic sidebar.
{} It's a method of the class: WP_Customize_Widgets{}
No Hooks.
Return
Null. Nothing.
Usage
$WP_Customize_Widgets = new WP_Customize_Widgets(); $WP_Customize_Widgets->start_dynamic_sidebar( $index );
- $index(int/string) (required)
- Index, name, or ID of the dynamic sidebar.
Changelog
Since 4.5.0 | Introduced. |
Code of WP_Customize_Widgets::start_dynamic_sidebar() WP Customize Widgets::start dynamic sidebar WP 5.6
public function start_dynamic_sidebar( $index ) {
array_unshift( $this->current_dynamic_sidebar_id_stack, $index );
if ( ! isset( $this->sidebar_instance_count[ $index ] ) ) {
$this->sidebar_instance_count[ $index ] = 0;
}
$this->sidebar_instance_count[ $index ] += 1;
if ( ! $this->manager->selective_refresh->is_render_partials_request() ) {
printf( "\n<!--dynamic_sidebar_before:%s:%d-->\n", esc_html( $index ), (int) $this->sidebar_instance_count[ $index ] );
}
}