tools/sidebar-generator
WordPress Sidebar Generator
WordPress Sidebar Generator is a tool that allows WordPress users to easily create customizable sidebars.
snippet.php
// Register custom sidebars
function wpskills_custom_sidebars() {
register_sidebar(
array(
'name' => __( 'My Sidebar', 'text-domain' ),
'description' => __( 'My Sidebar Description', 'text-domain' ),
'id' => 'sidebar-id',
'class' => 'my-sidebar',
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="widgettitle">',
'after_title' => '</h2>',
'before_sidebar' => '<aside id="%1$s" class="widget-area %2$s">',
'after_sidebar' => '</aside>',
'show_in_rest' => false,
)
);
}
add_action( 'widgets_init', 'wpskills_custom_sidebars' );