codestar-framework icon indicating copy to clipboard operation
codestar-framework copied to clipboard

How can I display fields depend on roles?

Open meno010 opened this issue 2 years ago • 1 comments

I want to create some fields but be available depend on user role How can I do that?

2-Can I add additional input to the comment form that allow users to use it with their comments?

meno010 avatar Dec 11 '22 02:12 meno010

yes you can show some field based on specify user role with 2 way: use below code before creating section on setting options: $user = wp_get_current_user(); if ( in_array( 'author', (array) $user->roles ) ) { 2- create php file with new options and retrict with code in way 1.

masoudnkh avatar Feb 12 '23 05:02 masoudnkh