-
Notifications
You must be signed in to change notification settings - Fork 82
activitypub_comment_attachments
github-actions[bot] edited this page Jul 25, 2025
·
8 revisions
Filter the attachments for a comment.
add_filter(
'activitypub_comment_attachments',
function (
array $attachments,
WP_Comment $item
) {
// Your code here
return $attachments;
},
10,
2
);
-
array
$attachments
The attachments. -
WP_Comment
$item
The comment object.
array
The filtered attachments.
\apply_filters( 'activitypub_comment_attachments', $attachments, $this->item )
Follow @[email protected] for updates and news.