bp_get_message_notice_subject
Filters the subject of the current notice in the loop.
Description
Parameters (1)
- 0. $messages_template_thread_subject (string)
- Subject of the current notice in the loop.
Usage
- To run the hook, copy the example below.
- $messages_template_thread_subject = apply_filters( 'bp_get_message_notice_subject', $messages_template_thread_subject );
- if ( !empty( $messages_template_thread_subject ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_get_message_notice_subject callback
- function filter_bp_get_message_notice_subject( $messages_template_thread_subject ) {
- // make filter magic happen here...
- return $messages_template_thread_subject;
- };
- // add the filter
- add_filter( 'bp_get_message_notice_subject', 'filter_bp_get_message_notice_subject', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_get_message_notice_subject', 'filter_bp_get_message_notice_subject', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-messages/bp-messages-template.php
- return apply_filters( 'bp_get_message_notice_subject', $messages_template->thread->subject );