Documentation · Developer Documentation
Database Tables For Developers
This page intentionally does not enumerate the plugin's database tables, columns, indexes, schema versions or migration steps.
What integrators need to know
The plugin uses a combination of standard WordPress storage and plugin-managed storage where it is required for the plugin's own functionality. Storage layout, table names, column definitions and migration behaviour are implementation details and are not part of the public integration contract.
**Direct database access (reads or writes) against plugin-managed storage is not supported.** Use the supported settings UI, shortcodes, templates and any documented extension points instead. If a piece of data you need is not reachable through a supported surface, request it as a feature rather than querying internal tables.
Supported public integration surfaces
When integrating with the plugin, prefer these stable surfaces:
- The plugin admin settings UI.
- The documented shortcodes.
- Theme-level template overrides as described in Template System And Overrides.
- The general Developer Overview for orientation.
Internal class names, option keys, database tables, REST and AJAX endpoints, cron hook names, capability and nonce identifiers, and release / update infrastructure are treated as implementation details. They may change between releases without notice and are not part of the public integration contract.
Stability and change policy
Anything not listed as a supported public surface above is considered an internal implementation detail. Internal APIs, storage layout and security implementation may change between releases. Do not depend on them from third-party code, themes or external systems. Direct database writes are not supported.
Public documentation notice. This page provides a high-level integration overview only. Internal implementation details, private APIs, storage internals and security-sensitive release infrastructure are maintained separately and are not part of the public documentation. Supported integration surfaces are the documented shortcodes, template overrides, settings UI and any extension points explicitly published in this section.