有没有办法获取整个wordpress页面的内容?我的问题是,我想在另一个页面上包含页面内容(以创建单页面布局)。我试过的是:
$post = get_post($the_page_id);
$content = apply_filters('the_content', $post->post_content);
echo $content;
但页面有自己的模板,我想显示整个页面,包括在template.php文件中完成的任何内容。那可能吗?
答案 0 :(得分:0)
好吧,我想出了一个解决方案。它可能不是最好的方式,但这对我有用。我创建了一个页面“home”来表示单页页面。此页面的所有子页面都有一个不包含页眉或页脚的模板。我的主页模板如下所示:
//fetch header as usual
get_header();
//fetch all subpages of this page
$my_wp_query = new WP_Query();
$all_wp_pages = $my_wp_query->query(array('post_type' => 'page', 'orderby' => 'menu_order', 'order' => 'ASC'));
$children = get_page_children( get_the_ID(), $all_wp_pages );
//browse these subpages and get the content for each one
foreach($children as $child){
$post = get_post($child->ID);
getOnePageContent($post);
}
//footer
get_footer();
现在在functions.php中我定义了getOnePageContent:
function getOnePageContent($page){
global $post;
$post = $page;
$slug = get_page_template_slug( $page->ID );
if($slug){
$pl = get_the_permalink($page);
$content = file_get_contents($pl);
echo $content;
} else {
$content = apply_filters('the_content', $page->post_content);
echo $content;
}
wp_reset_postdata();
}
只要子页面不包含页眉或页脚,这就可以了。当然,我不认为使用file_get_contents获取页面是一个优雅或好的解决方案,但至少它是有效的。