Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.

function my_new_sidebar() {
    register_sidebar(
        array(
            'id' => 'mysidebar',
            'name' => 'Мой сайдбар',
            'description' => 'Описание сайдбара в админке.',
            'before_widget' => '<div id="%1$s" class="mysidebar %2$s">',
            'after_widget' => '</div>',
            'before_title' => '<h4 class="mysidebar">',
            'after_title' => '</h4>'
        )
    );
}
add_action( 'widgets_init', 'my_new_sidebar' );
	<?php if ( is_active_sidebar( 'mysidebar' ) ) : ?>
<div id="secondary" class="widget-area" role="complementary">
<?php dynamic_sidebar( 'mysidebar' ); ?>
</div>
<?php endif; ?>
	Любыеспасибо за ответ только не ясно какой id прописывать и какое описание прописывать
