bbp_get_topic_author_links

bbp_get_topic_author_links

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_topic_author_links') is found 1 times:

  • /includes/topics/template.php line 1470
    1466
    1467
    1468
    1469
    1470
    1471
    1472
    1473
    1474
    1475
    1476
    $author_links = $links;
    unset( $links );
     
    // Filter sections
    $sections    = apply_filters( 'bbp_get_topic_author_links', $author_links, $r, $args );
     
    // Assemble sections into author link
    $author_link = implode( $r['sep'], $sections );
     
    // Only wrap in link if profile exists
    if ( empty( $anonymous ) && bbp_user_has_profile( bbp_get_topic_author_id( $topic_id ) ) ) {