Last active
March 16, 2021 12:56
-
-
Save IlanVivanco/ed598016ce083962cf930dac7b9cc615 to your computer and use it in GitHub Desktop.
Find pages using a template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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