_add_plugin_file_editor_to_tools

函式
_add_plugin_file_editor_to_tools ( No parameters )

_add_plugin_file_editor_to_tools: 這個函式用來將外掛編輯器新增到WordPress的工具選單中。外掛編輯器允許使用者在WordPress的儀表盤上編輯外掛的程式碼。

在”工具”中的”主題檔案編輯器”之後增加了”外掛檔案編輯器”選單項,用於區塊主題。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
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'
);
}
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' ); }
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'
	);
}

常見問題

FAQs
檢視更多 >