_add_plugin_file_editor_to_tools()WP 5.9.0

Adds the 'Plugin File Editor' menu item after the 'Themes File Editor' in Tools for block themes.

Внутренняя функция — эта функция рассчитана на использование самим ядром. Не рекомендуется использовать эту функцию в своем коде.

Хуков нет.

Возвращает

null. Ничего (null).

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

_add_plugin_file_editor_to_tools();

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

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

Код _add_plugin_file_editor_to_tools() WP 6.5.2

function _add_plugin_file_editor_to_tools() {
	if ( ! wp_is_block_theme() ) {
		return;
	}
	add_submenu_page(
		'tools.php',
		__( 'Plugin File Editor' ),
		__( 'Plugin File Editor' ),
		'edit_plugins',
		'plugin-editor.php'
	);
}