wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



_add_plugin_file_editor_to_tools › WordPress Function

Od5.9.0
Przestarzałyn/a
_add_plugin_file_editor_to_tools ( Brak parametrów )
Dostęp:
  • private
Zdefiniowane na:
Codex:

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



Źródło

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