Skip to content

atmosphere_transform_publication

github-actions[bot] edited this page Jul 2, 2026 · 8 revisions

Filters the site.standard.publication record.

Filters that return a non-array fall back to the pre-filter record.

Auto-generated Example

/**
 * Filters the site.standard.publication record.
 * 
 * Filters that return a non-array fall back to the pre-filter
 * record.
 *
 * @param array $record 
 * @return array The filtered value.
 */
function my_atmosphere_transform_publication_callback( array $record ) {
    // Your code here.
    return $record;
}
add_filter( 'atmosphere_transform_publication', 'my_atmosphere_transform_publication_callback' );

Parameters

  • array $record Publication record.

Files

\apply_filters( 'atmosphere_transform_publication', $record )

← All Hooks

Clone this wiki locally