Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Custom menu registration

… for sidebar

if ( ! function_exists( 'Get_Certificates!' ) ) {

// Register Sidebar
function Get_Certificates!() {

	$args = array(
	);
	register_sidebar( $args );

}

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

}