bp_get_site_name()
Returns the name of the BP site. Used in RSS headers.
Description Description
Return Return
(string)
Source Source
File: bp-core/bp-core-template.php
function bp_get_site_name() { /** * Filters the name of the BP site. Used in RSS headers. * * @since 1.0.0 * * @param string $value Current BP site name. */ return apply_filters( 'bp_site_name', get_bloginfo( 'name', 'display' ) ); }
Changelog Changelog
Version | Description |
---|---|
1.6.0 | Introduced. |