_add_themes_utility_last()
Adds the 'Theme File Editor' menu item to the bottom of the Appearance (non-block themes) or Tools (block themes) menu.
Внутренняя функция — эта функция рассчитана на использование самим ядром. Не рекомендуется использовать эту функцию в своем коде.
Хуков нет.
Возвращает
null. Ничего (null).
Использование
_add_themes_utility_last();
Список изменений
| С версии 3.0.0 | Введена. |
| С версии 5.9.0 | Renamed 'Theme Editor' to 'Theme File Editor'. Relocates to Tools for block themes. |
Код _add_themes_utility_last() add themes utility last WP 7.1
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'
);
}