Agrega al archivo functions.php del tema de WordPress y…ya:
function remove_website_row_wpse_94963() {
if(!current_user_can('manage_options')){
// Ocultar sólo para usuarios no administradores
echo "<script>jQuery(document).ready(function(){jQuery('#url').parents('tr').remove();});</script>";
}
}
add_action('admin_head-user-edit.php','remove_website_row_wpse_94963');
Deja una respuesta