【发布时间】:2014-02-01 15:04:37
【问题描述】:
在我的服务器上使用我的 wordpress 主题时出现以下错误,任何人都可以帮助解释为什么会发生这种情况。
解析错误:语法错误,第 1 行 /wp-content/themes/BookYourTravel/includes/theme_filters.php 中的意外 T_FUNCTION
这些是该文件中提到的代码
<?php
/** * Remove password email text if option for users to set their own password is enabled in Theme settings. */
function remove_password_email_text ( $text )
{
$let_users_set_pass = of_get_option('let_users_set_pass', 0);
if ($text == 'A password will be e-mailed to you.' && $let_users_set_pass)
$text = '';
return $text;
}
add_filter( 'gettext', 'remove_password_email_text' );
?>
【问题讨论】:
-
你应该格式化你的代码..