bbp_is_topic_super_sticky

bbp_is_topic_super_sticky

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_is_topic_super_sticky') is found 1 times:

  • /includes/topics/template.php line 1034
    1030
    1031
    1032
    1033
    1034
    1035
    1036
    1037
    1038
    1039
    1040
        $stickies = bbp_get_super_stickies( $topic_id );
        $retval   = in_array( $topic_id, $stickies, true );
     
        // Filter & return
        return (bool) apply_filters( 'bbp_is_topic_super_sticky', $retval, $topic_id );
    }
     
    /**
     * Output the status of the topic
     *
     * @since 2.0.0 bbPress (r2667)