Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

PRRI Newsroom

if ( ! function_exists( 'prri_newsroom_sidebars' ) ) {

// Register Sidebars
function prri_newsroom_sidebars() {

	$args = array(
		'id'            => 'prri-newsroom',
		'class'         => 'prri-newsroom',
		'name'          => __( 'PRRI Newsroom', 'prri' ),
		'before_title'  => '<h3 class="widgettitle">',
		'after_title'   => '</h3>',
		'before_widget' => '<div class="prri-widget">',
		'after_widget'  => '</div>',
	);
	register_sidebar( $args );

}
add_action( 'widgets_init', 'prri_newsroom_sidebars' );

}