Info
- 3 posts
- 2 voices
- Started 1 year ago by blahman29
- Latest reply from blahman29
- This topic is resolved
topic_tags()
-
- Posted 1 year ago #
I'm trying to find this function cuz I need to change the HTML it outputs.
According to this.. http://xref.yoast.com/bbtrunk/nav.html?_functions/index.html it should be located in includes/functions.bb-template.php but maybe that is a different version or something cuz I can't find it.
Does anyone know of some other sources of documentation where I can look up?
Also, I am trying to setup gravatars for each post and grab the posters email something like this..
<?php echo get_avatar( bb_get_user_email($bb_post->post_author), $size = '70'); ?>Does anyone know how to get the current posts author email?
-
- Posted 1 year ago #
About avatars, bbPress uses bb_get_avatar().
-
- Posted 1 year ago #
Thanks mr_pelle!
Regarding bb_get_avatar(), it looks like you still need to have the users email to use it. Is there an easy way to grab the email of the current poster?
I find solution to avatar here, http://bbpress.org/forums/topic/how-to-get-the-last-posts-avatar
echo bb_get_avatar( get_post_author_id(), '70');It seems I need to echo it out.
-
You must log in to post.