Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

associationsitemenu

if ( ! function_exists( 'top_menu' ) ) {

// Register Navigation Menus
function top_menu() {

	$locations = array(
	);
	register_nav_menus( $locations );

}

// Hook into the 'init' action
add_action( 'init', 'top_menu' );

}