bp_nouveau_message_search_form()
Output the Member’s messages search form.
Source Source
File: bp-templates/bp-nouveau/includes/messages/template-tags.php
function bp_nouveau_message_search_form() { $search_form_html = bp_buffer_template_part( 'common/js-templates/messages/search-form', null, false ); /** * Filters the private message component search form. * * @since 2.2.0 * * @param string $search_form_html HTML markup for the message search form. */ echo apply_filters( 'bp_message_search_form', $search_form_html ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.2.0 | Move the function into Template Tags and use a template part. |
3.0.0 | Introduced. |