最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin0浏览0评论

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>';
    }
}

?>
发布评论

评论列表(0)

  1. 暂无评论