Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Menüler

menüler

// Register Navigation Menus
function maria_menus() {

	$locations = array(
		'main_menu' => __( 'Ana Menü', 'wpmaria' ),
		'mobile_menu' => __( 'Mobil menü', 'wpmaria' ),
		'footer_menu' => __( 'Alt Menü', 'wpmaria' ),
	);
	register_nav_menus( $locations );

}

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