Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created August 25, 2021 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/68621e58023b2f58a901c2be4868eb06 to your computer and use it in GitHub Desktop.
Save KaineLabs/68621e58023b2f58a901c2be4868eb06 to your computer and use it in GitHub Desktop.
Youzify - Social Share Change Profile Cover with Avatar
<?php
/**
* Youzify - Social Share Change Profile Cover with Avatar.
* */
add_filter( 'youzify_og_profile_cover_image', 'yzc_change_og_profile_cover_image' );
function yzc_change_og_profile_cover_image() {
return bp_core_fetch_avatar(
array(
'item_id' => bp_displayed_user_id(),
'type' => 'full',
'html' => false
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment