此函数已弃用。自BuddyPress 1.9.0以来已移除。使用bp_notifications_delete_notifications_from_user ()代替。
bp_core_delete_notifications_from_user (intuser_id美元,字符串component_name美元,字符串component_action美元)
删除用户的所有通知。
描述
当删除或发送垃圾邮件时,用于清除用户的所有通知
参数
- user_id美元
-
(int)(必需)
- component_name美元
-
(字符串)(必需)
- component_action美元
-
(字符串)(必需)
返回
(假| int)成功时真,失败时假。
源
文件:bp-core /弃用/ buddypress / 1.9.php
function bp_core_delete_notifications_from_user($user_id, $component_name, $component_action){//如果通知是不活跃的if (!Bp_is_active ('notifications')){返回false;} //触发deprecated函数notice _deprecated_function(__FUNCTION__, '1.9', 'bp_notifications_delete_notifications_from_user()');返回bp_notifications_delete_notifications_from_user($user_id, $component_name, $component_action);}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.0.0 | 介绍了。 |