如何知道帖子是否有分页(<!--nextPage-->) 时间:2011-07-04 作者:Asaf Chertkoff 我需要一个可靠的解决方案来检查一篇文章是否有分页,而不管分页中当前页面的数量如何,也不管文章是否在分页的第一页。检查在回路内。谢谢 1 个回复 最合适的回答,由SO网友:Chip Bennett 整理而成 只需检查全局$numpages 变量:<?php global $numpages; if ( is_singular() && $numpages > 1 ) { // This is a single post // and has more than one page; // Do something. } ?> 结束 文章导航