register_sidebar( array( 'name' => esc_html__( 'Сайдбар', 'zone-theme' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'zone-theme' ), 'before_widget' => '<div class="sidebar-widget">', 'after_widget' => '</div>', 'before_title' => '<div class="widget-title">', 'after_title' => '</div>', ) ); I do.
that's what it does.
In the code, I can add a wrapper for the widget title (before_title + a_t) and I can also add a wrapper for the entire widget (before_widget + a_w). How to wrap your html, ul tag (widget content). As I know there is no such type parameter before_content and after_content. Or is there?)
I need this code structure
<div class="sidebar-widget"> <div class="widget-title">...</div> <div class="widget-content"><ul>...</ul></div> </div> 