Description
This function will output all user earned badges.
Usage
1 2 3 4 5 6 7 |
<?php userpro_show_badges( $user_id, $inline=false ); ?> |
Parameters
- $user_id – User ID (required)
- $inline – Display user badges inline or as a block (Default to false)
Returns
This will return the user badges
Examples
Display the badges of user’s ID 5
1 2 3 |
<?php echo userpro_show_badges(5); ?> |
Display user’s badges of a comment author (for use in theme comments)
1 2 3 |
<?php echo userpro_show_badges( $comment->user_id, $inline=true ); ?> |
Display user badges for post author
1 2 3 |
<?php echo userpro_show_badges( get_the_author_meta('ID') ); ?> |
Leave A Comment?