Warning: Cannot modify header information

前端 未结 2 1735
半阙折子戏
半阙折子戏 2020-12-22 07:38

Warning: Cannot modify header information - headers already sent by (output started at /home/content/51/5126851/html/wp-includes/post-template.php:54) in /hom

2条回答
  •  时光说笑
    2020-12-22 08:04

    My first recommendation would be to learn how to format code for SO. And figure out how to cut down your problem to the bare minimum someone needs to solve it.

    My second would be to look around the line mentioned in the error. I just did, and look what I found:

    if ( $echo )
        echo $title;
    

    So now you know what's outputting stuff, what can you do about it?

    Well, the other part of that statement is:

    else
        return $title;
    

    Now, I'm no Wordpress expert, but I'm sure that you can work out the first thing that needs changing.

提交回复
热议问题