Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

menu

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'company' => __( 'Компания', 'text_domain' ),
		'goods' => __( 'Продукция', 'text_domain' ),
		'services' => __( 'Услуги', 'text_domain' ),
		'information' => __( 'Информация', 'text_domain' ),
		'contacts' => __( 'Контакты', 'text_domain' ),
	);
	register_nav_menus( $locations );

}

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