Skip to content

Instantly share code, notes, and snippets.

@kbcarte
Created May 6, 2022 15:36
Show Gist options
  • Save kbcarte/e9a583b2b33256d3c919257e62b1510d to your computer and use it in GitHub Desktop.
Save kbcarte/e9a583b2b33256d3c919257e62b1510d to your computer and use it in GitHub Desktop.
Find all posts and pages in WordPress containing contact form 7

For ALL contact form 7

SELECT `guid`, `post_title` FROM `wp_posts` WHERE `post_content` LIKE '%[contact-form-7%'

For contact form 7 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 '%[contact-form-7 id="<ID HERE>"%'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment