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
1 | <?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
1 | <?php bbp_topic_author_link(); ?> |
Displays the linked avatar and username for the current topic author
1 | <?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
1 | <?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
1 | <?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
1 | <?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
Related
bbp_author_link()
bbp_reply_author_link()
bbp_show_lead_topic()