wpce_show_developer_profile_field v3.30.6
Filters whether to show the UI for making the current user a WPCE developer in the user profile.
Parameters
bool $showWhether to show the UI.
int $user_idThe ID of the checked user.
Example
php
// Only show the developer profile field for admins
add_filter('wpce_show_developer_profile_field', function (bool $show, int $user_id) {
return $show && user_can($user_id, 'manage_options');
}, 10, 2);