bp_get_message_thread_subject()
Get the subject of the current thread in the loop.
Description Description
Return Return
(string)
Source Source
File: bp-messages/bp-messages-template.php
function bp_get_message_thread_subject() {
global $messages_template;
/**
* Filters the subject of the current thread in the loop.
*
* @since 1.1.0
*
* @param string $value Subject of the current thread in the loop.
*/
return apply_filters( 'bp_get_message_thread_subject', $messages_template->thread->last_message_subject );
}