我会使用is_paged()
内部条件index.php
加载包含布局的两个单独模板。类似这样:
if ( is_paged() ):
get_template_part( \'content\', \'first-page\' );
else:
get_template_part( \'content\', \'paged\' );
endif;
假设您有两个模板,
content-first-page.php
和
content-paged.php
.
Edit: 如果您只想为索引页的一部分使用不同的模板,请尝试以下操作:
if ( !is_paged() ):
get_template_part( \'content\', \'middle\' );
endif;
将其放在您希望加载额外模板的任何位置。