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/8c5334b2c5376c0c837ce0ec408a229e to your computer and use it in GitHub Desktop.
Save gabrielmerovingi/8c5334b2c5376c0c837ce0ec408a229e to your computer and use it in GitHub Desktop.
Add a custom column called "Avatar" for leaderboards.
/**
* Add Custom Leaderboard Column
* @since 1.0
* @version 1.0
*/
function mycred_pro_bp_leaderboard_columns( $columns ) {
$columns['avatar'] = 'Avatar';
return $columns;
}
add_filter( 'mycred_bp_leaderboard_columns', 'mycred_pro_bp_leaderboard_columns' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment