如何解决acf_form()中的“标题已发送”错误

时间:2019-01-06 10:40:02

标签: php wordpress advanced-custom-fields

我有一个前端表单,可以在我的表单中以我的自定义帖子类型发布帖子: http://ponisha.takide.ir/?page_id=2

当我填写表格并要发布时,出现此错误:

Warning: Cannot modify header information - headers already sent by (output started at /home/takideir/public_html/ponisha/wp-content/themes/twentynineteen/page-2.php:14) in /home/takideir/public_html/ponisha/wp-includes/pluggable.php on line 1223

1 个答案:

答案 0 :(得分:0)

在具有标题的PHP页面顶部使用此代码

<?php
ob_start();
// your funtion comes here

?>