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
·
6 revisions
Filters the site.standard.document record before publishing.
Filters that return a non-array fall back to the pre-filter
record.
Auto-generated Example
/** * Filters the site.standard.document record before publishing. * * Filters that return a non-array fall back to the pre-filter * record. * * @param array $record * @param WP_Post $post * @return array The filtered value. */functionmy_atmosphere_transform_document_callback( array$record, WP_Post$post ) {
// Your code here.return$record;
}
add_filter( 'atmosphere_transform_document', 'my_atmosphere_transform_document_callback', 10, 2 );