Forums

Join
bbPress Support ForumsThemesIs there a list of template tags anywhere?

Info

Is there a list of template tags anywhere?

  1. I see in the front_page.php there is <?php topic_last_poster(); ?> which will show the last poster for that topic. I'd like the username to link to that person's profile.

    I've tried using combinations of <?php topic_last_poster_id(); ?> <?php topic_last_poster_link(); ?> <?php topic_last_poster_profile(); ?> <?php topic_last_poster(); ?> and nothing seems to be valid.

    Is there a way I can do this?

  2. No easily.

    Try:

    <a href="<?php user_profile_link( $topic->topic_last_poster ); ?>" title="User Profile"><?php topic_last_poster(); ?></a>

  3. You must log in to post.