From d96a9ff93186bf621167ffbd4f3a829451534d51 Mon Sep 17 00:00:00 2001 From: Dhrumil Kumbhani <57712674+dhrumilkumbhani@users.noreply.github.com> Date: Fri, 1 Dec 2023 15:51:51 +0530 Subject: [PATCH] Fix the issue 241 (#242) * Fix the issue 241 https://github.com/WordPress/five-for-the-future/issues/241 * Remove whitespace. --- themes/wporg-5ftf/functions.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/themes/wporg-5ftf/functions.php b/themes/wporg-5ftf/functions.php index f2451ed..b04c9fe 100644 --- a/themes/wporg-5ftf/functions.php +++ b/themes/wporg-5ftf/functions.php @@ -281,6 +281,10 @@ function get_badge_classes( $team ) { $classes = array( 'badge-openverse', 'dashicons-search' ); break; + case 'plugin review team': + $classes = array( 'badge-plugins-reviewer', 'dashicons-admin-plugins' ); + break; + case 'photos team': $classes = array( 'badge-photos', 'dashicons-camera' ); break;