wp_nav_menu_manage_columns()WP 3.0.0

Returns the columns for the nav menus page.

Хуков нет.

Возвращает

Строку[]. Array of column titles keyed by their column name.

Использование

wp_nav_menu_manage_columns();

Список изменений

С версии 3.0.0 Введена.

Код wp_nav_menu_manage_columns() WP 6.5.2

function wp_nav_menu_manage_columns() {
	return array(
		'_title'          => __( 'Show advanced menu properties' ),
		'cb'              => '<input type="checkbox" />',
		'link-target'     => __( 'Link Target' ),
		'title-attribute' => __( 'Title Attribute' ),
		'css-classes'     => __( 'CSS Classes' ),
		'xfn'             => __( 'Link Relationship (XFN)' ),
		'description'     => __( 'Description' ),
	);
}