bp_notifications_mark_notification (int$ id,int | boolis_new美元=假)
根据用户ID标记通知已读/未读。
描述
用于清除特定通知项的通知。
参数
- $ id
-
(int)(必需)通知ID。
- is_new美元
-
(int|保龄球)(可选)0表示已读,1表示未读。
默认值:假
返回
(假| int)成功时真,失败时假。
源
文件:bp-notifications / bp-notifications-functions.php
函数bp_notifications_mark_notification($id, $is_new = false) {if (!Bp_notifications_check_notification_access (bp_displayed_user_id(), $id)){返回false;} return BP_Notifications_Notification::update(array('is_new' => $is_new), array('id' => $id));}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.9.0 | 介绍了。 |