为当前主题创建子主题。阅读如何here.
然后在子主题中创建一个名为front-page.php
. 这是WordPress在您访问网站主页时查找的第一个文件。
要了解原因,请阅读here.
在该文件中使用:
<?php
get_header();
$all_pages = get_pages();
global $post;
echo \'<div class="pages-container">\';
foreach ( $all_pages as $post ) {
setup_postdata($post);
// improve the content, this is an example
echo \'<h2>\' . the_title() . \'</h2>\';
echo \'<div class="page">\' . the_content() . \'</div>\';
}
echo \'</div>\';
wp_reset_postdata();
get_footer();
我使用的函数文档如下: