在wordpress主题中添加第二个自定义帖子类型时出错

时间:2014-02-10 18:43:31

标签: php wordpress

在我的functions.php中,当我只添加一个自定义帖子类型的代码时,它可以正常工作但添加另一个自定义帖子类型。它显示了这个错误 -

Warning: Cannot modify header information - headers already sent by (output started at /home/public_html/wordpress/wp-content/themes/mytheme/functions.php:83) in /home/public_html/wordpress/wp-includes/pluggable.php on line 896

为什么会发生这种情况?什么是可能的解决方案?

1 个答案:

答案 0 :(得分:0)

检查 functions.php 文件的 83 行。
您可能有一个关闭的php标记和后面的新行/空格。在结束标记之后删除任何不必要的空格。

参考 - How to fix "Headers already sent" error in PHP