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 Jun 30, 2026
·
6 revisions
Fires when update_post() skips a post that has no
Atmosphere publication history.
Subscribers can use this to surface the skip (e.g. an
admin notice nudging the user toward Backfill) or to
instrument metrics. Fires exactly once per skipped
update.
Auto-generated Example
/** * Fires when `update_post()` skips a post that has no * Atmosphere publication history. * * Subscribers can use this to surface the skip (e.g. an * admin notice nudging the user toward Backfill) or to * instrument metrics. Fires exactly once per skipped * update. * * @param WP_Post $post */functionmy_atmosphere_update_skipped_unsynced_post_callback( WP_Post$post ) {
// Your code here.
}
add_action( 'atmosphere_update_skipped_unsynced_post', 'my_atmosphere_update_skipped_unsynced_post_callback' );