bbp_get_reply_author_links

bbp_get_reply_author_links

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_reply_author_links') is found 1 times:

  • /includes/replies/template.php line 1237
    1233
    1234
    1235
    1236
    1237
    1238
    1239
    1240
    1241
    1242
    1243
    $author_links = $links;
    unset( $links );
     
    // Filter sections
    $sections    = apply_filters( 'bbp_get_reply_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_reply_author_id( $reply_id ) ) ) {