Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Footer Menu 1

Footer Menu 1

if ( ! function_exists( 'f_menu2' ) ) {

// Register Sidebar
function f_menu2() {

	$args = array(
		'id'            => 'f_menu2',
		'name'          => __( 'Footer Menu 2', 'text_domain' ),
		'description'   => __( 'Footer Menu 2', 'text_domain' ),
		'class'         => 'f_menu2',
		'before_title'  => '<h2 class="f_menu_title"',
		'after_title'   => '<h2>',
		'before_widget' => '<li id="%1$s" class="%2$s">',
		'after_widget'  => '</li>',
	);
	register_sidebar( $args );

}

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

}