Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

mobile menu

agregar menu mobil porto

if ( ! function_exists( 'Mobile_menu' ) ) {

// Register Navigation Menus
function Mobile_menu() {

	$locations = array(
		'Mobil Menu' => __( 'Menu ubicado en MobileMenu', 'text_domain' ),
	);
	register_nav_menus( $locations );

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

}