Skip to content

Instantly share code, notes, and snippets.

@IlanVivanco
Last active March 16, 2021 12:56
Show Gist options
  • Save IlanVivanco/ed598016ce083962cf930dac7b9cc615 to your computer and use it in GitHub Desktop.
Save IlanVivanco/ed598016ce083962cf930dac7b9cc615 to your computer and use it in GitHub Desktop.
Find pages using a template
SELECT
COUNT(*) as total
FROM
wp_posts as p
JOIN wp_postmeta as m ON p.ID = m.post_id
WHERE
p.`post_type` = 'page'
AND p.`post_status` = 'publish'
AND m.`meta_key` = '_wp_page_template'
AND m.`meta_value` = 'page-your-template-name.php'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment