分析错误:Wordpress中存在语法错误


Parse error: syntax error in Wordpress

分析错误:语法错误,第991行上/home3/mathiasf/public_html/wp-content/themes/smartstart/functions/plugin-activation.php中的意外T_IF

这是我在991 行找到的

if ( ! class_exists( 'WP_List_Table' ) ) {

如何解决此错误?

以下是完整的代码:http://pastebin.com/UB0EWK2A

您可能忘记了前一行的;,例如

echo 'foo'
if (...) { ... }

将触发错误。