Change WordPress user roles and capabilities › Forums › Restrict or Permit access inside WordPress – how to › Permission to view user profile custom fields › Reply To: Permission to view user profile custom fields
30/07/2019 at 06:57
#5854
Keymaster
“User Registration” plugin shows extra fields at back-end user profile only to a user with ‘manage_options’ capability:
public function show_user_extra_fields( $user ) {
if ( ! current_user_can( 'manage_options' ) ) {
return;
}
$show_fields = $this->get_user_meta_by_form_fields( $user->ID );
...