Untitled Snippet
// Register Sidebars function custom_sidebars() { $args = array( 'name' => __( 'Sidebars', 'text_domain' ), 'description' => __( 'sidebars', 'text_domain' ), ); register_sidebar( $args ); } add_action( 'widgets_init', 'custom_sidebars' );