无法修改标头信息 - 标头已由...WordPress Issue
我遇到此错误。我不知道处理这个问题。
无法修改标头信息 - 已由 /home/ben213/public_html/wp-include/pluggable 中的 /home/ben213/public_html/wp-content/themes/Bendaggers/functions.php:9) 发送的标头.php位于第 934 行
我的函数.php文件行 # 9 是:
<?php if(function_exists('register_sidebar'))register_sidebar();?>
而我的可插拔.php#934是
function wp_redirect($location, $status = 302) {
global $is_IIS;
$location = apply_filters('wp_redirect', $location, $status);
$status = apply_filters('wp_redirect_status', $status, $location);
if ( !$location ) // allows the wp_redirect filter to cancel a redirect
return false;
$location = wp_sanitize_redirect($location);
if ( !$is_IIS && php_sapi_name() != 'cgi-fcgi' )
status_header($status); // This causes problems on IIS and some FastCGI setups
header("Location: $location", true, $status);}
endif;
我很难弄清楚这一点,因为我不是程序员。似乎出了什么问题?请帮帮我...