Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Topic Menus

// Register Navigation Menus
function law_topic_menus() {

	$locations = array(
		'ins-rep' => __( 'Menu for the topic Insider Reporting', 'text_domain' ),
		'ewr_amrs' => __( 'Menu for the topic Early Warning Reporting and the AMRS', 'text_domain' ),
		'inv_funds' => __( 'Menu for the topic Investment Funds', 'text_domain' ),
		'ex_rel' => __( 'Menu for Exemptive Relief Orders', 'text_domain' ),
	);
	register_nav_menus( $locations );

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