标签: php wordpress templates loops
嗨有没有办法循环使用某个模板的wordpress页面?
答案 0 :(得分:4)
尝试以下方法:
$template = 'NAME'; $query = new WP_Query( array( 'meta_key' => '_wp_page_template', 'meta_value' => $template.'.php' ) ); while( $query->have_posts() ) : $query->the_post(); ... endwhile;