在2017年,你只能在首页部分增加4页。请参见下图
看见
Appearance
=>
Customize
=>
Theme Options
Update
您可以使用筛选器添加额外的节twentyseventeen_front_page_sections
将此代码添加到functions.php
function tws_custom_front_sections( $num_sections )
{
return 5; //Change this number to change the number of the sections.
}
add_filter( \'twentyseventeen_front_page_sections\', \'tws_custom_front_sections\' );