如何从WordPress管理面板中的”添加用户页面”中删除网站字段()

我现在无法从wordpress仪表板” 添加用户” 页面中删除网站字段。有人请提出建议吗?
#1也许这可以帮助你:

function hide_website_krotedev(){ echo "\n" . '< script type="text/javascript"> jQuery(document).ready(function($) { $(\'label[for=url], input#url\').hide(); }); < /script> ' . "\n"; } add_action('admin_head', 'hide_website_krotedev');

#2如果要删除用户配置文件中的Twitter字段, 则应将以下代码添加到functions.php文件中。
function modify_contact_methods($profile_fields) {// Remove profile fields unset($profile_fields['twitter']); return $profile_fields; } add_filter('user_contactmethods', 'modify_contact_methods', 10, 1);

不幸的是, 目前尚没有简便的方法来删除” 网站” 字段, 你始终可以使用jQuery将其隐藏, 但这当然有点混乱。
希望对你有所帮助, 也请在以下网址查看stackexchange网站上有关WordPress的问题:http://wordpress.stackexchange.com
#3“ 用户个人资料网站” 字段似乎已在user-edit.php中进行了硬编码, 因此你不应删除它。但是你可以使用CSS隐藏它。将此代码添加到你的functions.php文件中:
function remove_website_row_wpse_94963_css() { echo '< style> tr.user-url-wrap{ display: none; }< /style> '; } add_action( 'admin_head-user-edit.php', 'remove_website_row_wpse_94963_css' ); add_action( 'admin_head-profile.php', 'remove_website_row_wpse_94963_css' );

#4我更改了kroteDev的答案, 改为隐藏行而不是单个字段。
function hide_website_field(){ // Hide the website field on the admin Add New User form echo "\n" . '< script type="text/javascript"> jQuery(document).ready(function($) { $(\'label[for=url]\').parent().parent().hide(); }); < /script> ' . "\n"; } add_action('admin_head', 'hide_website_field');

#5以下代码可用于删除添加到$ restricted数组中的菜单。
function remove_menus () { global $menu; $restricted = array(__('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), __('Appearance'), __('Tools'), __('Users'), __('Settings'), __('Comments'), __('Plugins')); end ($menu); while (prev($menu)){ $value = http://www.srcmini.com/explode(' ', $menu[key($menu)][0]); if(in_array($value[0] != NULL?$value[0]:"" , $restricted)){unset($menu[key($menu)]); } } } add_action('admin_menu', 'remove_menus');

#6去wp-admin / user-edit.php
【如何从WordPress管理面板中的” 添加用户页面” 中删除网站字段()】评论此代码
< tr> < th> < label for="url"> < ?php _e('Website') ?> < /label> < /th> < td> < input type="text" name="url" id="url" value="http://www.srcmini.com/< ?php echo esc_attr($profileuser-> user_url) ?>" class="regular-text code" /> < /td> < /tr>

    推荐阅读