我为特定的Slug制作了一个视图模板
第1-220页使用第页。php联系人使用页面联系人。php服务使用页面服务。php现在,我想在一个包含页面概述的“概述”页面上列出页面及其模板。php模板。
我试过这个:
<?php $args = array(
\'post_type\' => \'page\', /* or just \'post\' */
\'posts_per_page\' => -1,
);
$the_query = new WP_Query( $args );
$i=1;
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo \'<p>\';
echo $i . \'. \';
the_title();
echo \' - \';
echo get_page_template();
echo \'</p>\';
$i++;
}
wp_reset_postdata();
} ?>
get\\u page\\u template()始终返回页面概览的路径。php。
想知道我在这里错过了什么。我想知道是否有办法使用该页面获取ID列表。php模板。
非常感谢