Skip to content

activitypub_attachment_ids

github-actions[bot] edited this page Jul 29, 2025 · 13 revisions

Filter the attachment IDs for a post.

Auto-generated Example

add_filter(
   'activitypub_attachment_ids',
    'my_activitypub_attachment_ids_callback',
    10,
    2
);

function my_activitypub_attachment_ids_callback(
    array $media,
    WP_Post $item
) {
    // Your code here.
    return $media;
}

Parameters

  • array $media The media array grouped by type.
  • WP_Post $item The post object.

Returns

array The filtered attachment IDs.

Files

\apply_filters( 'activitypub_attachment_ids', $media, $this->item )

← All Hooks

Users

Developers

Clone this wiki locally