根据@s\\u ha\\u dum的建议,您可以检查page
. 当您在第一页时,该值为1。
global $page;
if ( $page == 1 ) :
// you\'re on the first page
endif;
但您可能需要先检查帖子是否分页:
global $multipage;
if ( 0 !== $multipage ) :
global $page;
if ( $page == 1 ) :
// you\'re on the first page
endif;
endif;