Skip to content

Instantly share code, notes, and snippets.

@jas8522
Created February 16, 2024 20:20
Show Gist options
  • Save jas8522/23be8fbc1db66aa8c2e5fba3d6afe024 to your computer and use it in GitHub Desktop.
Save jas8522/23be8fbc1db66aa8c2e5fba3d6afe024 to your computer and use it in GitHub Desktop.
How to get all WordPress posts powered by Divi Builder via SQL query
SELECT * FROM `wp_postmeta`
INNER JOIN wp_posts ON wp_posts.ID=wp_postmeta.post_id
WHERE `meta_key` LIKE '_et_pb_use_builder'
AND `meta_value` LIKE 'on'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment