What is wrong with this? 时间:2016-10-29 作者:RodneyHawk 有了这个脚本,我想问一下评论分页是否有超过0个站点,如果是,我想使用自定义标题。但我犯了一个PHP错误。。。谁能告诉我这是怎么回事吗?<?php $page_comment = get_query_var(\'cpage\'); if ($page_comment > 0);?> test <?php endif; ?> 1 个回复 最合适的回答,由SO网友:BlackOut 整理而成 语法错误;if后面有一个分号condition. 尝试以下操作:<?php $page_comment = get_query_var(\'cpage\'); if ($page_comment > 0): ?> test <?php endif; ?> 可选PHP语法:<?php $page_comment = get_query_var(\'cpage\'); if ($page_comment > 0){ ?> test <?php } ?> 文章导航