bbp_topic_archive_title
Output the topic archive title.
Description
bbp_topic_archive_title( (string) $title = '' );
Parameters (1)
- 0. $title — Optional. (string) =>
''
- Default text to use as title
Usage
if ( !function_exists( 'bbp_topic_archive_title' ) ) { require_once ABSPATH . PLUGINDIR . 'bbpress/includes/topics/template.php'; } // Default text to use as title $title = ''; // NOTICE! Understand what this does before running. $result = bbp_topic_archive_title($title);
Defined (1)
The function is defined in the following location(s).
- /includes/topics/template.php
- function bbp_topic_archive_title( $title = '' ) {
- echo bbp_get_topic_archive_title( $title );
- }