bbp_get_topic_tag_caps

bbp_get_topic_tag_caps

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_topic_tag_caps') is found 1 times:

  • /includes/topics/capabilities.php line 44
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    */
    function bbp_get_topic_tag_caps() {
     
        // Filter & return
        return (array) apply_filters( 'bbp_get_topic_tag_caps', array(
            'manage_terms' => 'manage_topic_tags',
            'edit_terms'   => 'edit_topic_tags',
            'delete_terms' => 'delete_topic_tags',
            'assign_terms' => 'assign_topic_tags'
        ) );
    }