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



_add_themes_utility_last › WordPress Function

Since3.0.0
已弃用n/a
_add_themes_utility_last ( 没有参数 )
访问:
  • private
定义在:
文档:
Change Log:
  • 5.9.0

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



源码

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