There was an error while loading. Please reload this page.
Filter the comment types tracked in statistics.
Allows adding additional comment types to be tracked in the statistics dashboard.
/** * Filter the comment types tracked in statistics. * * Allows adding additional comment types to be tracked * in the statistics dashboard. * * @param array $result * @return array The filtered value. */ function my_activitypub_stats_comment_types_callback( array $result ) { // Your code here. return $result; } add_filter( 'activitypub_stats_comment_types', 'my_activitypub_stats_comment_types_callback' );
array
$result
\apply_filters( 'activitypub_stats_comment_types', $result )
← All Hooks