_add_themes_utility_last

函数
_add_themes_utility_last ( No parameters )
Access
Private
定义位置
相关方法
add_utility_pageadd_theme_supportadd_theme_pageget_parent_theme_file_pathget_theme_file_path
引入
3.0.0
弃用
-

_add_themes_utility_last: 这个函数用来在WordPress主题菜单的末尾添加一个实用函数: 这个函数可以用来在主题菜单中添加自定义动作或链接。

将”主题文件编辑器”菜单项添加到外观(非区块主题)或工具(区块主题)菜单的底部。或工具(区块主题)菜单的底部。

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

常见问题

FAQs
查看更多 >