このエラーが発生しています。そして、私はこれを扱う考えがありません。
ヘッダー情報を変更できません - /home/ben213/public_html/wp-includes/pluggable.php の (/home/ben213/public_html/wp-content/themes/Bendaggers/functions.php:9 で開始された出力) によって既に送信されたヘッダー934行目
私のFunctions.phpファイルの行番号9は次のとおりです。
<?php if(function_exists('register_sidebar'))register_sidebar();?>
私のpluggable.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;
私はプログラマーではないので、これを理解するのに苦労しています。何が間違っているようですか?どうか私を助けてください...