Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Untitled Snippet

if ( ! function_exists( 'fracture_footer_nav' ) ) {

// Register Navigation Menus
function fracture_footer_nav() {

	$locations = array(
		'footer_column_one' => __( 'First Nav Column in the Footer', 'fracture_theme' ),
		'footer_column_two' => __( 'Second Nav Column in the Footer', 'fracture_theme' ),
		'footer_column_three' => __( 'Third Nav Column in the Footer', 'fracture_theme' ),
		'footer_bar' => __( 'Footer Bar Nav Menu in the Footer', 'fracture_theme' ),
	);
	register_nav_menus( $locations );

}
add_action( 'init', 'fracture_footer_nav' );

}