Parse error: syntax error, unexpected '/' in /home/mwproperty/public_html/wp-blog-header.php on line 12

后端 未结 2 1602
花落未央
花落未央 2021-01-26 17:01


        
2条回答
  •  南笙
    南笙 (楼主)
    2021-01-26 17:26

    Line 12 is the following:

    require_once( dirname(__FILE__) . /wp-load.php );
    

    You forgot the quotes (so it makes it a string):

    require_once( dirname(__FILE__) . '/wp-load.php');
    

提交回复
热议问题