Stores

Logger Stores

Action Scheduler logging is handled by the ActionScheduler_Logger abstraction and two concrete implementations: ActionScheduler_DBLogger (custom tables) ActionScheduler_wpCommentLogger (legacy WP comments)...

Updated February 13, 2026

Data Store Overview

This document describes Action Scheduler’s store abstraction (ActionScheduler_Store) and how to select or extend stores. Purpose of the Store Abstraction...

Updated February 13, 2026

ActionScheduler_DBStore (Custom Tables)

ActionScheduler_DBStore is the default store implementation that persists actions in custom database tables. It lives in classes/data-stores/ActionScheduler_DBStore.php and extends the...

Updated February 13, 2026

ActionScheduler_HybridStore (Migration Bridge)

ActionScheduler_HybridStore is a wrapper store that reads from two stores and migrates actions from the legacy store to the custom-table...

Updated February 13, 2026

ActionScheduler_wpPostStore (Legacy WP Posts Store)

ActionScheduler_wpPostStore persists actions as a custom post type (scheduled-action) plus post meta and taxonomy data. It lives in classes/data-stores/ActionScheduler_wpPostStore.php and...

Updated February 13, 2026
← Back to Chubes.net