开发者

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;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜