Hello friends, welcome again on my blog. Today in this blog post, I am going to tell you, How to add and delete user role in wordpress?
For WordPress lovers and beginners must check the below links:
Friends here is the working code snippet for How to add and delete user role in wordpress? and please use it carefully to avoid the mistakes:
1. Guys we need to add below code into our WordPress activated theme’s functions.php file:
Guys before run remove_role hook, we need to comment or delete add_role hook:
//Add new role hook add_role("Youtuber", __("Youtuber"), array("read"=>true, "edit_posts"=>true)); //Delete role hook //First you need remove or comment the add_role hook because if we will not delete or comment add_role hook then both add_role and remove_role will run same time with same name(Youtuber). remove_role("Youtuber");
Now we are done friends. If you have any kind of query or suggestion or any requirement then feel free to comment below. There are lots of WordPress hooks and filters and we should use them rather then do custom code in theme core files or in plugins files.
Note: Friends, I just tell the basic setup and things, you can change the code according to your requirements. For better understanding must watch video above.
I will appreciate that if you will tell your views for this post.Nothing matters if your views will good or bad.
Jassa
Thanks
Recent Comments