Skip to content

Instantly share code, notes, and snippets.

@kbcarte
Last active April 4, 2022 15:52
Show Gist options
  • Save kbcarte/944915559029b2c811021d0171cb1661 to your computer and use it in GitHub Desktop.
Save kbcarte/944915559029b2c811021d0171cb1661 to your computer and use it in GitHub Desktop.
Find all posts and pages in WordPress containing gravity forms

For ALL gravity forms

SELECT `guid`, `post_title` FROM `wp_posts` WHERE `post_content` LIKE '%[gravityform%'

For gravity form by ID

Replace <ID HERE> with the id number found in wp-admin

SELECT `guid`, `post_title` FROM `wp_posts` WHERE `post_content` LIKE '%[gravityform id="<ID HERE>"%'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment