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 8, 2026
·
7 revisions
Filters the maximum number of posts to backfill.
Only the most recent unsynced posts (up to this limit) will
be included in each backfill run. Use 0 or -1 to backfill all.
Auto-generated Example
/** * Filters the maximum number of posts to backfill. * * Only the most recent unsynced posts (up to this limit) will * be included in each backfill run. Use 0 or -1 to backfill all. * * @param int $limit * @return int The filtered value. */functionmy_atmosphere_backfill_limit_callback( int$limit ) {
// Your code here.return$limit;
}
add_filter( 'atmosphere_backfill_limit', 'my_atmosphere_backfill_limit_callback' );