esc_html__( 'Primary Sidebar', 'auspicious' ), 'description' => esc_html__( 'Add widgets here to appear in your sidebar on Blog Posts and Archives only', 'auspicious' ), 'id' => 'sidebar-primary', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); /** * Custom Sidebar */ register_sidebar( array( 'name' => esc_html__( 'Custom Sidebar', 'auspicious' ), 'description' => esc_html__( 'Add widgets here to appear in your sidebar on custom pages only', 'auspicious' ), 'id' => 'sidebar-custom', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', __NAMESPACE__ . '\register_sidebars' );