php和wordpress错误 - 无法修改标题

时间:2011-10-21 10:07:36

标签: php wordpress

我正在创建一个wordpress博客,并且我有以下警告不断出现,

  

警告:无法修改标头信息 - 已发送的标头   (输出始于   /home/content/66/7511066/html/zen/wp-content/themes/ZenOfficePortfolio/functions.php:20)   在/home/content/66/7511066/html/zen/wp-includes/pluggable.php上线   934

当我在我的机器上本地尝试此代码时,它工作正常。然而,当我将代码移动到托管网站时,我不断收到错误

我的functions.php如下

<?php
    if(function_exists('register_sidebar')){
        register_sidebar(array('name' => 'ZenOffice'));
    } 

        add_filter('comments_template', 'legacy_comments');
    function legacy_comments($file) {
        if ( !function_exists('wp_list_comments') ) 
            $file = TEMPLATEPATH . '/old-comments.php';
        return $file;
    }

    //Set the theme categories
    define('BLOG',15);
    define('PORTFOLIO',14);
?>

1 个答案:

答案 0 :(得分:0)

我认为iv解决了它,

我确保没有像@Pekka建议的空格。 然后我重新上传了文件。

现在似乎正在运作。