Skip to content

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.

Auto-generated Example

/**
 * 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 );

Parameters

  • int $year The year of the collected stats.
  • int $month The month of the collected stats.

Files

\do_action( 'activitypub_monthly_stats_collected', $year, $month )

← All Hooks

Users

Developers

Clone this wiki locally