my_jetpack_red_bubble_notification_slugs
my_jetpack_red_bubble_notification_slugs
Appears in: jetpack.13.3.1, jetpack.13.5, jetpack.13.6, jetpack.13.7, jetpack.13.8, jetpack.13.8.1, jetpack.13.9.1, jetpack.14.0, jetpack.14.1, jetpack.14.2.1, jetpack.14.3
Hook Type: filter
See hook in action
Displaying hooks found in version: jetpack.14.3apply_filters('my_jetpack_red_bubble_notification_slugs') is found 1 times:
- /jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php line 907903904905906907908909910911912
return
$stored_alerts
;
}
// go find the alerts
$red_bubble_alerts
= apply_filters(
'my_jetpack_red_bubble_notification_slugs'
,
$red_bubble_alerts
);
// cache the alerts for one hour
set_transient( self::MY_JETPACK_RED_BUBBLE_TRANSIENT_KEY,
$red_bubble_alerts
, 3600 );
return
$red_bubble_alerts
;
}