我如何修复该语法错误,意外T_STRING,期望T_FUNCTION


How can I fix that syntax error, unexpected T_STRING, expecting T_FUNCTION?

我使用wordpress主题,并在函数中添加了一些代码.php。这里有:https://gist.github.com/tomhemsley/4d19646f57a0a1f20709

然后,我看到:

更改此行

if ( $datas['tried'] <= $this->failed_login_limit )

对此

if ( $datas['tried'] <= $this->failed_login_limit ) {

您错过了if状况的开口支撑。最好使用良好的 IDE,以便解决这些类型的语法错误。