bp_attachments_get_group_has_cover_image( int $group_id )
Does the group has a cover image?
Description Description
Parameters Parameters
- $group_id
-
(Required) Group ID to check cover image existence for.
Return Return
(bool) True if the group has a cover image, false otherwise.
Source Source
File: bp-core/bp-core-attachments.php
function bp_attachments_get_group_has_cover_image( $group_id = 0 ) { if ( empty( $group_id ) ) { $group_id = bp_get_current_group_id(); } $cover_src = bp_attachments_get_attachment( 'url', array( 'object_dir' => 'groups', 'item_id' => $group_id, ) ); return (bool) apply_filters( 'bp_attachments_get_user_has_cover_image', $cover_src, $group_id ); }
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Renamed the filter coherently. |
2.4.0 | Introduced. |