You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
github-actions[bot] edited this page Jul 7, 2026
·
2 revisions
Fires after monthly statistics have been collected for all users.
Auto-generated Example
/** * Fires after monthly statistics have been collected for all users. * * @param int $year * @param int $month */functionmy_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 );