Loop through pages with certain template
Hi is the开发者_如何转开发re a way to loop through wordpress pages that are using a certain template?
try the following:
$template = 'NAME';
$query = new WP_Query( array( 'meta_key' => '_wp_page_template', 'meta_value' => $template.'.php' ) );
while( $query->have_posts() ) : $query->the_post();
...
endwhile;
精彩评论