There was an error while loading. Please reload this page.
Filters the HTML markup for the ActivityPub remote comment reply container.
/** * Filters the HTML markup for the ActivityPub remote comment reply container. * * @param string $block * @return string The filtered value. */ function my_activitypub_comment_reply_link_callback( string $block ) { // Your code here. return $block; } add_filter( 'activitypub_comment_reply_link', 'my_activitypub_comment_reply_link_callback' );
string
$block
\apply_filters( 'activitypub_comment_reply_link', $block )
← All Hooks