bp_get_message_thread_unread_count ()
获取当前线程的未读计数。
描述
返回
(int)
源
文件:bp-messages / bp-messages-template.php
函数bp_get_message_thread_unread_count() {global $messages_template;$ count = !空($messages_template->thread->unread_count) ?(int) $messages_template->thread->unread_count: false;/** *过滤当前线程的未读计数。* * @since BuddyPress 1.0.0 * * @param int $count当前线程未读计数。*/返回apply_filters('bp_get_message_thread_unread_count', $count);}