I would like to query only pages with a certain page template with WP_Query
or a function that would return the post object, but I can’t find any information about that on the official codex.
Leave a Reply
You must be logged in to post a comment.
I would like to query only pages with a certain page template with WP_Query
or a function that would return the post object, but I can’t find any information about that on the official codex.
You must be logged in to post a comment.
UPDATE:
This is now a decade old answer, meant for a very old version of WordPress. I can see the comments informing me that this might not work for newer WP versions, please do refer to the other answers below if mine is not working for your version of WP. For WP 2.*, this will work.
Try this…
Assuming the template name is ‘my_template.php’,
You can also use get_posts, or modify query posts to get the job done. Both these functions use the same parameters as WP_Query.
Incorrect: as of wordpress 3 you need something akin to:
The page template is stored as a meta value with key “_wp_page_template”.
So all you need is to use that key in a meta query parameter. For examples
See http://codex.wordpress.org/Displaying_Posts_Using_a_Custom_Select_Query#Query_based_on_Custom_Field_and_Sorted_by_Value
and
http://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters
If you have the template inside another folder:
If anyone’s attempt incorrectly results in zero posts, probably the template name is wrong. I tried the php file name and my template name and they didn’t work. Then I decided to inspect the templates select box where we select the template on the page editor. I found this:
I used
templates-map/component-tutorial-1.php
and it worked.