We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Fires after a ActivityPub comment type is registered.
/** * Fires after a ActivityPub comment type is registered. * * @param string $comment_type * @param array $args */ function my_activitypub_registered_comment_type_callback( string $comment_type, array $args ) { // Your code here. } add_action( 'activitypub_registered_comment_type', 'my_activitypub_registered_comment_type_callback', 10, 2 );
string
$comment_type
array
$args
\do_action( 'activitypub_registered_comment_type', $comment_type, $args )
← All Hooks