-
Notifications
You must be signed in to change notification settings - Fork 83
activitypub_the_content
github-actions[bot] edited this page Jul 29, 2025
·
20 revisions
Filters the post content after it was transformed for ActivityPub.
add_filter(
'activitypub_the_content',
function (
string $content,
WP_Comment $comment
) {
// Your code here
return $content;
},
10,
2
);-
string$contentThe content of the comment. -
WP_Comment$commentThe comment object.
string The filtered content of the comment.
\apply_filters( 'activitypub_the_content', $content, $comment )\apply_filters( 'activitypub_the_content', $content, $post )Follow @[email protected] for updates and news.