wpseek.com
WordPress开发者和主题制作者的搜索引擎



_add_plugin_file_editor_to_tools › WordPress Function

Since5.9.0
已弃用n/a
_add_plugin_file_editor_to_tools ( 没有参数 )
访问:
  • private
定义在:
文档:

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



源码

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