在父页

时间:2017-08-15 13:45:58

标签: php html wordpress wordpress-theming themes

我目前正在使用一个页面构建自定义主题。

我想在我的父页面上显示所有子页面,但子页面的模板也要显示

我目前正在使用的代码:

<?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没有显示。

如何显示子页面的模板和内容?

0 个答案:

没有答案