-
Notifications
You must be signed in to change notification settings - Fork 85
activitypub_monthly_stats_collected
github-actions[bot] edited this page Mar 18, 2026
·
1 revision
Fires after monthly statistics have been collected for all users.
/**
* Fires after monthly statistics have been collected for all users.
*
* @param int $year
* @param int $month
*/
function my_activitypub_monthly_stats_collected_callback( int $year, int $month ) {
// Your code here.
}
add_action( 'activitypub_monthly_stats_collected', 'my_activitypub_monthly_stats_collected_callback', 10, 2 );-
int$yearThe year of the collected stats. -
int$monthThe month of the collected stats.
\do_action( 'activitypub_monthly_stats_collected', $year, $month )Follow @activitypub.blog@activitypub.blog for updates and news.