BP_Nouveau::setup_support()
Setup the Template Pack features support.
Description
Source
File: bp-templates/bp-nouveau/buddypress-functions.php
protected function setup_support() {
$width = 1300;
$top_offset = 150;
/** This filter is documented in bp-core/bp-core-avatars.php. */
$avatar_height = apply_filters( 'bp_core_avatar_full_height', $top_offset );
if ( $avatar_height > $top_offset ) {
$top_offset = $avatar_height;
}
bp_set_theme_compat_feature( $this->id, array(
'name' => 'cover_image',
'settings' => array(
'components' => array( 'xprofile', 'groups' ),
'width' => $width,
'height' => $top_offset + round( $avatar_height / 2 ),
'callback' => 'bp_nouveau_theme_cover_image',
'theme_handle' => 'bp-nouveau',
),
) );
}
Changelog
| Version | Description |
|---|---|
| BuddyPress 3.0.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.