bbp_get_default_user_options
bbp_get_default_user_options
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
Displaying hooks found in version: bbpress.2.6.9apply_filters('bbp_get_default_user_options') is found 1 times:
- /includes/users/options.php line 2319202122232425262728
*/
function
bbp_get_default_user_options() {
// Filter & return
return
(
array
) apply_filters(
'bbp_get_default_user_options'
,
array
(
'_bbp_last_posted'
=>
'0'
,
// For checking flooding
'_bbp_topic_count'
=>
'0'
,
// Total topics per site
'_bbp_reply_count'
=>
'0'
// Total replies per site
) );
}