bbp_get_author_links

bbp_get_author_links

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_author_links') is found 1 times:

  • /includes/users/template.php line 2074
    2070
    2071
    2072
    2073
    2074
    2075
    2076
    2077
    2078
    2079
    2080
    $author_links = $links;
    unset( $links );
     
    // Filter sections
    $sections    = apply_filters( 'bbp_get_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( $user_id ) ) {