Skip to content

Instantly share code, notes, and snippets.

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 gabrielmerovingi/f5b3b38549385705903deac9e30faade to your computer and use it in GitHub Desktop.
Save gabrielmerovingi/f5b3b38549385705903deac9e30faade to your computer and use it in GitHub Desktop.
Render the content of a custom leaderboard column with the ID "avatar".
/**
* Avatar Leaderboard Column
* @since 1.0
* @version 1.0
*/
function mycred_pro_bp_leaderboard_avatar_column( $content, $row, $group_id, $point_type ) {
return get_avatar( $row->user_id, 64 );
}
add_filter( 'mycred_bp_leaderboard_avatar_column', 'mycred_pro_bp_leaderboard_avatar_column', 10, 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment