-
Notifications
You must be signed in to change notification settings - Fork 9
mastodon_api_tag
github-actions[bot] edited this page Apr 14, 2026
·
4 revisions
Modify the tag data returned for /api/v1/tags/:name requests.
add_filter(
'mastodon_api_tag',
function (
Enable_Mastodon_Apps\Entity\Tag $tag = null,
WP_REST_Request $request
) {
// Your code here
return $tag;
},
10,
2
);-
Enable_Mastodon_Apps\Entity\Tag|null$tagThe tag data. -
WP_REST_Request$requestThe request object.
Enable_Mastodon_Apps\Entity\Tag The tag data.
\apply_filters( 'mastodon_api_tag', null, $request )