当我去编辑位于以下位置的用户帐户时:
http://web.site/wp-admin/user-edit.php?user_id=ID
add_settings_section()
作用但是,我认为这仅限于向设置菜单添加自定义部分:Settings
-- General
-- Reading
-- Media
-- Permalinks
到目前为止,我已经在阅读菜单中添加了我的自定义部分,用于测试目的:add_action( \'admin_init\', \'wpse_edit_user\' );
function wpse_edit_user() {
add_settings_section( \'user_role\', \'User Roles\', \'wpse_user_role_section\', \'reading\' );
}
function wpse_user_role_section() {
?>
<p class="description">Content to my custom section here...</p>
<?php
}
但我不想定位在阅读中。如何在中显示自定义内容user-edit.php
页