bp_get_notifications_read_permalink (user_id美元)
返回读通知永久链接。
描述
返回
(字符串)阅读通知永久链接。
源
文件:bp-notifications / bp-notifications-template.php
函数bp_get_notifications_read_permalink($user_id = 0) {if (0 === $user_id) {$user_id = bp_loggedin_user_id();$域= bp_loggedin_user_domain ();} else {$domain = bp_core_get_user_domain((int) $user_id);} $retval = trailingslashit($域。bp_get_notifications_slug()。' /读');/** *过滤读取通知永久链接。* * @since BuddyPress 1.9.0 * @since BuddyPress 2.6.0添加$user_id参数。* * @param string $retval Permalink用于读取通知。* @param int $user_id用户ID。 */ return apply_filters( 'bp_get_notifications_unread_permalink', $retval, $user_id ); }
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.9.0 | 介绍了。 |