php - How to add a DELETE button to the "Edit User" Wordpress admin page?

I'm looking for a way to add a DELETE button to the "Edit User" (wp-adminuser-edit.php?user_id=???) pag

I'm looking for a way to add a DELETE button to the "Edit User" (/wp-admin/user-edit.php?user_id=???) page. This is what I have so far but I'd like to place the link next to the "Update User" button.

<?php 
add_action('edit_user_profile', 'add_delete_button_to_edit_profile', 10, 1);    

function add_delete_button_to_edit_profile() {
    if (current_user_can('administrator')) {
        echo '<a class="delete_user" href="/wp-admin/users.php?action=delete&user='.$user_id.'&_wpnonce='.$nonce.'>DELETE USER</a>';
    }
}

?>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742414921a4439553.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信