Forums

Join

Info

Tags

topic_tags()

  1. 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?

  2. Indeed it is.

    About avatars, bbPress uses bb_get_avatar().

  3. 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.

  4. You must log in to post.