WP Admin – Remove sections from User Profile for non-admin, editor
// Remove Color Scheme Picker add_action( ‘admin_head-profile.php’, ‘afm_remove_color_scheme’ ); function afm_remove_color_scheme( ) { $user = wp_get_current_user(); $allowed_roles = array( ‘administrator’, ‘editor’ ); if ( ! array_intersect( $allowed_roles, $user->roles ) ) { remove_action( ‘admin_color_scheme_picker’, ‘admin_color_scheme_picker’ ); } } // Remove application…Continue reading