Fatal error: Cannot re-assign auto-global variable _POST

后端 未结 3 1708
迷失自我
迷失自我 2020-12-17 16:01

I can\'t get access to my WP (version3.4.2) admin. It says as mentioned above

Fatal error: Cannot re-assign auto-global variable _POST in /home/xxx/p

3条回答
  •  余生分开走
    2020-12-17 16:27

    @user3450716, the only thing you need to do, as Abhik Chakraborty said, is to delete the $_POST from your function rt_check_sidebar parameters and leave the function with no parameters, like this:

    your line 540:

    function rt_check_sidebar_array($_POST){
    

    change it to:

    function rt_check_sidebar_array(){
    

提交回复
热议问题