bp_get_folder_folder_title()
Return the folder title.
Description
Return
(string) The document folder title.
Source
File: bp-document/bp-document-template.php
function bp_get_folder_folder_title() {
global $document_folder_template;
$title = '';
if ( isset( $document_folder_template ) && isset( $document_folder_template->folder ) && isset( $document_folder_template->folder->title ) ) {
$title = $document_folder_template->folder->title;
}
/**
* Filters the folder title being displayed.
*
* @since BuddyBoss 1.4.0
*
* @param int $id The document folder title.
*/
return apply_filters( 'bp_get_folder_folder_title', $title );
}
Changelog
| Version | Description |
|---|---|
| BuddyBoss 1.4.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.