bbp_get_topic_edit_link

bbp_get_topic_edit_link

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_topic_edit_link') is found 1 times:

  • /includes/topics/template.php line 2429
    2426
    2427
    2428
    2429
    2430
    2431
    2432
    2433
    2434
    2435
            $retval = $r['link_before'] . '<a href="' . esc_url( $uri ) . '" class="bbp-topic-edit-link">' . $r['edit_text'] . '</a>' . $r['link_after'];
     
            // Filter & return
            return apply_filters( 'bbp_get_topic_edit_link', $retval, $r, $args );
        }
     
    /**
     * Output URL to the topic edit page
     *
     * @since 2.0.0 bbPress (r2753)