This commit is contained in:
2026-07-02 15:54:39 -06:00
commit 9883323161
17470 changed files with 4470592 additions and 0 deletions
@@ -0,0 +1,23 @@
# Cron, caches, and rewrites
Use this file when debugging background jobs or “changes not visible”.
## Cron
- List scheduled events:
- `wp cron event list`
- Run a specific event now:
- `wp cron event run <hook>`
## Cache + rewrite
- Flush object cache:
- `wp cache flush`
- Flush rewrite rules:
- `wp rewrite flush`
## Guardrails
- Dont “run all cron events” on production without understanding impact.
- Cache flush can cause load spikes; coordinate if needed.