From time-to-time, you may need to bulk delete a set of actions scheduled with Action Scheduler. This can be done using the following SQL queries: Delete Schedule Actions DELETE FROM `wp_posts` WHERE `post_type` = ‘scheduled-action’ AND `post_title` = ‘hook_name’ Delete Orphaned Meta The above query will delete scheduled actions but not their associated meta, so […]

Read More