Viewing 1 replies (of 1 total)
  • Plugin Author Vladimir Garagulya

    (@shinephp)

    Unfortunately any custom permission requires the piece of code which will check it. Like if you add ‘list_created_users’ capability, you should have a code which will check it

    
    if ( current_user_can('list_created_users') ) {
      // Show the list of users created by current user
    ...
    

    and only then show the needed data.

Viewing 1 replies (of 1 total)
  • The topic ‘List of created users’ is closed to new replies.