Example #1
0
function bp_blog_description() {
	echo apply_filters( 'bp_blog_description', bp_get_blog_description() );
}
/**
 * Output the description of the current blog in the loop.
 */
function bp_blog_description()
{
    /**
     * Filters the description of the current blog in the loop.
     *
     * @since BuddyPress (1.2.0)
     *
     * @param string $value Description of the current blog in the loop.
     */
    echo apply_filters('bp_blog_description', bp_get_blog_description());
}
function bp_blog_description()
{
    echo bp_get_blog_description();
}