Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,042
- How-to & Troubleshooting
- 129,701
- Creating & Extending
- 25,794
- Requests & Feedback
- 9,498
- Third Party Plugins
- 9,793
- Showcase
- 3,316
- Ideas
- 1,375
- Miscellaneous
- 9,180
-
You need to get the owner of the blog, then get the avatar for the owner. Something like:
$blog = new BP_Blogs_Blog($blog_id);
$av = bp_core_get_avatar($blog->user_id);
bp_core_get_avatar() has lots of options. Or $user = new BP_Core_User($blog->user_id) for even more stuff related to the user who owns the blog.