You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
github-actions[bot] edited this page May 19, 2026
·
1 revision
Filters the post types that support ATmosphere publishing.
Runs after the option and native add_post_type_support()
opt-ins are merged, so plugins can add or remove either source.
Auto-generated Example
/** * Filters the post types that support ATmosphere publishing. * * Runs after the option and native `add_post_type_support()` * opt-ins are merged, so plugins can add or remove either source. * * @param Atmosphere\string[] $post_types * @return Atmosphere\string[] The filtered value. */functionmy_atmosphere_syncable_post_types_callback( Atmosphere\string[] $post_types ) {
// Your code here.return$post_types;
}
add_filter( 'atmosphere_syncable_post_types', 'my_atmosphere_syncable_post_types_callback' );