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.


Top ↑

Return Return

(bool) True if the group has a cover image, false otherwise.


Top ↑

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 );
}

Top ↑

Changelog Changelog

Changelog
Version Description
6.0.0 Renamed the filter coherently.
2.4.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.