کار سختی نیست که یا میتونید لول های کاربری فعلی وردپرس رو براشون فیلد جدا برای هر لول بسازید
یا میتونید لول جدید بسازید برای هر عضویت و برای هر کدام فیلدهای خودشو بزارید
کد PHP:
add_role'client1''کاربری 1',
    array(
    
'read' => true// true allows this capability
    
'edit_posts' => true// Allows user to edit their own posts
    
'edit_pages' => true// Allows user to edit pages
    
'edit_others_posts' => true// Allows user to edit others posts not just their own
    
'create_posts' => true// Allows user to create new posts
    
'manage_categories' => true// Allows user to manage post categories
    
'publish_posts' => true// Allows the user to publish, otherwise posts stays in draft mode
    
)
);