Warning: This function has been deprecated. Use bp_nouveau_the_group_meta() instead.
bp_nouveau_group_meta()
Display the group meta.
Description Description
See also See also
Return Return
(string) HTML Output.
Source Source
File: bp-templates/bp-nouveau/includes/groups/template-tags.php
function bp_nouveau_group_meta() { _deprecated_function( __FUNCTION__, '7.0.0', 'bp_nouveau_the_group_meta()' ); $group_meta = new BP_Nouveau_Group_Meta(); if ( ! bp_is_group() ) { echo $group_meta->meta; } else { return $group_meta; } }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
7.0.0 | Use bp_nouveau_the_group_meta() |
3.0.0 | Introduced. |