Skip to:
Content
Pages
Categories
Search
Top
Bottom

bbp_topic_author_link

Codex Home → bbp_topic_author_link

Description

The ‘bbp_topic_author_link’ function is used to display the current topic author’s user role, avatar and username linked to their profile

Where is it used

Templates: content-single-topic-lead.php

How to use it

<?php bbp_topic_author_link( $args ); ?>

$args (optional) – Accepts an array of arguments to configure display ( post_id, link_title, type, size, sep, show_role )

Uses bbp_get_topic_author_link()

Sample code example

<?php bbp_topic_author_link(); ?>

Displays the linked avatar and username for the current topic author

<?php bbp_topic_author_link( array( 'sep' => '<br />', 'show_role' => true ) ); ?>

Displays the current topic author and user role separated by an HTML <br /> element

<?php bbp_topic_author_link( array( 'sep' => '<br />', 'show_role' => true, 'size' => 32 ) ); ?>

Displays the current topic author and user role separated by an HTML <br /> element and sets their avatar to a size of 32px wide and 32px tall

<?php bbp_topic_author_link( array( 'sep' => '<br />', 'show_role' => false, 'type' => 'avatar' ) ); ?>

Displays only the current topic author user’s avatar without their display name or user role

<?php bbp_topic_author_link( array( 'sep' => '<br />', 'show_role' => false, 'type' => 'name' ) ); ?>

Displays only the current topic author user’s display name without their avatar or user role

bbp_author_link()
bbp_reply_author_link()
bbp_show_lead_topic()

Skip to toolbar