bbp_get_topic_types
bbp_get_topic_types
Appears in: bbpress.2.5.14, bbpress.2.6.0, bbpress.2.6.1, bbpress.2.6.11, bbpress.2.6.12, bbpress.2.6.2, bbpress.2.6.3, bbpress.2.6.4, bbpress.2.6.5, bbpress.2.6.6, bbpress.2.6.9
Hook Type: filter
See hook in action
Displaying hooks found in version: bbpress.2.6.9apply_filters('bbp_get_topic_types') is found 1 times:
- /includes/topics/functions.php line 18951891189218931894189518961897189818991900
*/
function
bbp_get_topic_types(
$topic_id
= 0 ) {
// Filter & return
return
(
array
) apply_filters(
'bbp_get_topic_types'
,
array
(
'unstick'
=> _x(
'Normal'
,
'Unstick a topic'
,
'bbpress'
),
'stick'
=> _x(
'Sticky'
,
'Make topic sticky'
,
'bbpress'
),
'super'
=> _x(
'Super Sticky'
,
'Make topic super sticky'
,
'bbpress'
)
),
$topic_id
);
}