-
Notifications
You must be signed in to change notification settings - Fork 7
mastodon_api_new_app_post_formats
Alex Kirk edited this page Feb 8, 2025
·
13 revisions
Post formats to be enabled for new apps.
add_filter( 'mastodon_api_new_app_post_formats', function( $post_formats ) {
// This will enable standard and aside post formats for new apps.
return array( 'standard', 'aside' );
} );
-
array
$post_formats
The post formats. $app_metadata
array
The post formats.
apply_filters( 'mastodon_api_new_app_post_formats', $post_formats, $app_metadata )
apply_filters( 'mastodon_api_new_app_post_formats', $post_formats, $app_metadata )