Warning: This method has been deprecated. Deprecated in favor of wp_nav_menu_manage_columns() instead.

WP_Customize_Nav_Menus_Panel::wp_nav_menu_manage_columns() WordPress Method

The WP_Customize_Nav_Menus_Panel::wp_nav_menu_manage_columns() method is used to manage the columns for a nav menu in the WordPress Customizer. You can use this method to add, remove, or rearrange the columns for a nav menu.

WP_Customize_Nav_Menus_Panel::wp_nav_menu_manage_columns() #

Returns the advanced options for the nav menus page.


Description

Link title attribute added as it’s a relatively advanced concept for new users.


Top ↑

Source

File: wp-includes/customize/class-wp-customize-nav-menus-panel.php

	public function wp_nav_menu_manage_columns() {
		_deprecated_function( __METHOD__, '4.5.0', 'wp_nav_menu_manage_columns' );
		require_once ABSPATH . 'wp-admin/includes/nav-menu.php';
		return wp_nav_menu_manage_columns();
	}


Top ↑

Changelog

Changelog
VersionDescription
4.5.0Deprecated in favor of wp_nav_menu_manage_columns().
4.3.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.