我目前正在使用一个页面构建自定义主题。
我想在我的父页面上显示所有子页面,但子页面的模板也要显示
我目前正在使用的代码:
<?php
$mypages = get_pages( array(
'child_of' => $post->ID,
'sort_column' => 'post_date',
'sort_order' => 'desc' ) );
foreach( $mypages as $page ) {
$content = $page->post_content;
if ( ! $content ) continue;
$content = apply_filters( 'the_content', $content ); ?>
<div class="entry"><?php echo $content; ?></div>
<?php } ?>
这里的问题是子模板的HTML没有显示。
如何显示子页面的模板和内容?