考虑使用is_home()
用于检查是否显示主页的条件标记。
<?php
if ( is_home() ) {
// This is a homepage
// Do your fancy loop here with extra bells and whistles
} else {
// This is not a homepage (i.e. paginated page)
// Do a stripped down version of your loop above with no bells and whistles
}
?>
参考
is_home 关于WordPress Codex