Page template query with WP_Query

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.

Related posts

Leave a Reply

5 comments

  1. 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’,

    $query = new WP_Query(
        array(
            'post_type' => 'page',
            'meta_key' => '_wp_page_template',
            'meta_value' => 'my_template.php'
        )
    );
    //Down goes the loop...
    

    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.

  2. Incorrect: as of wordpress 3 you need something akin to:

    $args = array(
        'post_type'  => 'page', 
        'meta_query' => array( 
            array(
                'key'   => '_wp_page_template', 
                'value' => 'my_template.php'
            )
        )
    );
    
  3. If you have the template inside another folder:

    $args = array(
        'post_type' => 'page', //it is a Page right?
        'post_status' => 'publish',   
        'meta_query' => array(
            array(
                'key' => '_wp_page_template',
                'value' => 'page-templates/template-name.php', // folder + template name as stored in the dB
            )
        )
    );
    
  4. 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:

    <option value="templates-map/component-tutorial-1.php" 
     selected="selected">Tutorial -1</option>
    

    I used templates-map/component-tutorial-1.php and it worked.