此函数已弃用。自BuddyPress 1.9.0以来已移除。使用bp_notifications_delete_notification ()代替。
bp_core_delete_notification (int$ id)
根据ID删除指定的通知。
描述
参数
- $ id
-
(int)(必需)ID的通知。
返回
(假|整数)成功时真,失败时假。
源
文件:bp-core /弃用/ buddypress / 1.9.php
function bp_core_delete_notification($id){//如果通知未激活,则保释。Bp_is_active ('notifications')){返回false;} //触发deprecated函数notice _deprecated_function(__FUNCTION__, '1.9', 'bp_notifications_delete_notification()');返回BP_Notifications_Notification::delete_by_id($id);}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.0.0 | 介绍了。 |