-
RankMath plugin is using Action Scheduler plugin inside its core folder.
When this is active I am seeing a lots of query which is being fired in frontend side
SELECT p.ID
FROM wp_posts p
WHERE post_type=’scheduled-action’
AND p.post_title=’action_scheduler/migration_hook’
AND p.post_status IN (‘in-progress’)
ORDER BY p.post_date_gmt ASC
LIMIT 0, 1SELECT a.action_id
FROM wp_actionscheduler_actions a
WHERE 1=1
AND a.hook=’action_scheduler/migration_hook’
AND a.status IN (‘in-progress’)
ORDER BY a.scheduled_date_gmt ASC
LIMIT 0, 1I want to execute this only in wp-admin side and not on frontend side just to reduce load on database.
The ticket ‘RankMath multiple duplicate query.’ is closed to new replies.