From 8f87a0a7a400e63d90f9cd4830671f272f556c15 Mon Sep 17 00:00:00 2001 From: Dhrumil Kumbhani <57712674+dhrumilkumbhani@users.noreply.github.com> Date: Fri, 1 Dec 2023 15:38:48 +0530 Subject: [PATCH] Fix the issue 241 https://github.com/WordPress/five-for-the-future/issues/241 --- 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..ea942c7 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;