There was an error while loading. Please reload this page.
Filters the warning message shown to logged-in users without ActivityPub capability.
/** * Filters the warning message shown to logged-in users without ActivityPub capability. * * @param string $warning * @param WP_Comment $comment * @return string The filtered value. */ function my_activitypub_federation_warning_callback( string $warning, WP_Comment $comment ) { // Your code here. return $warning; } add_filter( 'activitypub_federation_warning', 'my_activitypub_federation_warning_callback', 10, 2 );
string
$warning
WP_Comment
$comment
\apply_filters( 'activitypub_federation_warning', $warning, $comment )
← All Hooks