Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Respired Sidebar

Sidebar for respired pages.

// Register Sidebar
function respired_sidebar() {

	$args = array(
		'id'            => 'respired-sidebar',
		'name'          => __( 'Respired Sidebar', 'respired_theme' ),
		'description'   => __( 'Sidebar for Respired Pages.', 'respired_theme' ),
		'class'         => 'respired-sidebar',
		'before_title'  => '<h6 class="hide">',
		'after_title'   => '</h6>',
	);
	register_sidebar( $args );

}

// Hook into the 'widgets_init' action
add_action( 'widgets_init', 'respired_sidebar' );