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