我已经创建了一个名为“主页”的页面,将该页面设置为首页Reading > Static Page > Front page
它几乎可以正常工作。我的博客帖子没有包含在页面中。它带有空白页,我需要将订单更改为“menu\\u order”,不起作用。
换句话说,我需要按照与导航相同的顺序获取页面。
<?php
/**
* The main template file.
*
* Template Name: One
*/
get_header();
$pages = get_posts(array(
\'posts_per_page\' => -1,
\'post_type\' => \'page\',
\'order\' => \'ASC\'
));
foreach($pages as $_post) {
$content = apply_filters(\'the_content\', $_post->post_content);
$title = $_post->post_title;
$slug = $_post->post_name;
?>
-div class content-
<?php
}
get_footer(); ?>