如果计数大于 0 (PHP),如何更改 class?

How to change class if the count is more than 0 (PHP)?

我有一个 WordPress 网站,我尝试对 buddypress 进行一些修改。 我最近成功在我的主菜单中显示通知,但我想更改一些颜色,如果计数大于 0。

所以:如果值(可能是 $notif ?)大于 0,则 class "pending-count" 必须更改为 "pending-count-alert"...

如果你能帮助我....提前致谢!

<?php

function my_nav_menu_notif_counter($menu) {      
        if (!is_user_logged_in())
                return $menu;
        else
                $notif = '<li ><a class="ab-item" href="' . bp_core_get_user_domain(bp_loggedin_user_id() ) . 'notifications/">'. __('').'<span id="ab-pending-notifications" class="pending-count alert">'. __(''). bp_notifications_get_unread_notification_count( bp_loggedin_user_id() ) .'</span> </a></li>';
                $menu = $menu . $notif;
                return $menu;
}
add_filter( 'wp_nav_menu_items', 'my_nav_menu_notif_counter' );
add_filter( 'show_admin_bar', '__return_false' );
?>

试试下面的方法:

$unreadNotificationCount = bp_notifications_get_unread_notification_count( bp_loggedin_user_id() );
$notif = '<li ><a class="ab-item" href="' . bp_core_get_user_domain(bp_loggedin_user_id() ) . 'notifications/">'. __('').'<span id="ab-pending-notifications" class="' . ( $unreadNotificationCount > 0 ? 'pending-count-alert' : 'pending-count' ) .' alert">'. __(''). $unreadNotificationCount .'</span> </a></li>';