wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



_add_themes_utility_last › WordPress Function

Da3.0.0
Deprecaton/a
_add_themes_utility_last ( Nessun parametro )
Accedi:
  • private
Definito a:
Codex:
ChangeLog:
  • 5.9.0

Adds the 'Theme File Editor' menu item to the bottom of the Appearance (non-block themes) or Tools (block themes) menu.



Sorgenti

function _add_themes_utility_last() {
	add_submenu_page(
		wp_is_block_theme() ? 'tools.php' : 'themes.php',
		__( 'Theme File Editor' ),
		__( 'Theme File Editor' ),
		'edit_themes',
		'theme-editor.php'
	);
}