WP_Customize_Nav_Menus_Panel::wp_nav_menu_manage_columns()publicWP 4.3.0

Deprecated from version 4.5.0 Deprecated in favor of wp_nav_menu_manage_columns().. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Returns the advanced options for the nav menus page.

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

Method of the class: WP_Customize_Nav_Menus_Panel{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Customize_Nav_Menus_Panel = new WP_Customize_Nav_Menus_Panel();
$WP_Customize_Nav_Menus_Panel->wp_nav_menu_manage_columns();

Changelog

Since 4.3.0 Introduced.
Deprecated since 4.5.0 Deprecated in favor of wp_nav_menu_manage_columns().

WP_Customize_Nav_Menus_Panel::wp_nav_menu_manage_columns() code WP 6.5.2

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();
}