回答編集履歴
4
追記修正
test
CHANGED
@@ -55,3 +55,27 @@
|
|
55
55
|
|
56
56
|
|
57
57
|
~~(コメントの回答で `/*` があったことが判明したので追記部分の回答は関係ありませんでしたので訂正)~~
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
----
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
あ、よく見たら...
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
> Warning: Cannot modify header information - headers already sent by (output started at /home/users/0/whitesnow.jp-nurse/web/wp02/wp-config.php:1)
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
なので、`wp-config.php` の1行目が問題の行ですね。
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
wp-config.php の1行目には何がありますか?
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
なにもないのであれば、 UTF-8 の BOM がついている可能性がありますので、エディタで UTF-8 (BOM無し) を選んで保存し直してみてください。
|
3
回答を修正
test
CHANGED
@@ -18,32 +18,40 @@
|
|
18
18
|
|
19
19
|
|
20
20
|
|
21
|
-
> 子テーマの編集の画面で
|
21
|
+
~~> 子テーマの編集の画面で~~
|
22
22
|
|
23
23
|
|
24
24
|
|
25
|
-
> ( Below here, please write down your own functions for the child theme. ) */
|
25
|
+
~~> ( Below here, please write down your own functions for the child theme. ) */
|
26
26
|
|
27
|
-
> function bbp_no_email( $mail ) {
|
27
|
+
~~> function bbp_no_email( $mail ) {
|
28
28
|
|
29
|
-
> return 'no_email@example.com';
|
29
|
+
~~> return 'no_email@example.com';
|
30
30
|
|
31
|
-
> }
|
31
|
+
~~> }
|
32
32
|
|
33
|
-
> add_filter( 'bbp_pre_anonymous_post_author_email', 'bbp_no_email' );
|
33
|
+
~~> add_filter( 'bbp_pre_anonymous_post_author_email', 'bbp_no_email' );
|
34
|
+
|
35
|
+
~~
|
36
|
+
|
37
|
+
~~追加したのが上記だけということですが、
|
38
|
+
|
39
|
+
~~
|
40
|
+
|
41
|
+
~~`( Below here, please write down your own functions for the child theme. ) */` ~~
|
42
|
+
|
43
|
+
~~の行ですが、行頭に `/* ` が抜けていませんか?~~
|
34
44
|
|
35
45
|
|
36
46
|
|
37
|
-
追加したのが上記だけということですが、
|
38
|
-
|
39
|
-
`
|
47
|
+
~~`/* 〜〜 */` ならコメント文ですが、上記の内容では、コメント文になっていないので、この行で文字が出力されたことになります。~~
|
40
|
-
|
41
|
-
の行ですが、行頭に `/* ` が抜けていませんか?
|
42
48
|
|
43
49
|
|
44
50
|
|
45
|
-
`
|
51
|
+
~~そのため、これ移行の `header( 〜 )` 関数はすべて、`Warning: Cannot modify header information - headers already sent by 〜` の Warning になります。
|
52
|
+
|
53
|
+
~~
|
46
54
|
|
47
55
|
|
48
56
|
|
49
|
-
|
57
|
+
~~(コメントの回答で `/*` があったことが判明したので追記部分の回答は関係ありませんでしたので訂正)~~
|
2
誤字の修正
test
CHANGED
@@ -34,7 +34,11 @@
|
|
34
34
|
|
35
35
|
|
36
36
|
|
37
|
+
追加したのが上記だけということですが、
|
38
|
+
|
37
|
-
|
39
|
+
`( Below here, please write down your own functions for the child theme. ) */`
|
40
|
+
|
41
|
+
の行ですが、行頭に `/* ` が抜けていませんか?
|
38
42
|
|
39
43
|
|
40
44
|
|
1
追記
test
CHANGED
@@ -9,3 +9,37 @@
|
|
9
9
|
なので、HTTP ヘッダの出力前に出力をされているのだと思われます。
|
10
10
|
|
11
11
|
functions.php の中で、文字を出力していないでしょうか。
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
----
|
16
|
+
|
17
|
+
(追記)
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
> 子テーマの編集の画面で
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
> ( Below here, please write down your own functions for the child theme. ) */
|
26
|
+
|
27
|
+
> function bbp_no_email( $mail ) {
|
28
|
+
|
29
|
+
> return 'no_email@example.com';
|
30
|
+
|
31
|
+
> }
|
32
|
+
|
33
|
+
> add_filter( 'bbp_pre_anonymous_post_author_email', 'bbp_no_email' );
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
追加したのが上記だけということですが、 `( Below here, please write down your own functions for the child theme. ) */` の行ですが、行頭に `/* ` が抜けていたりしませんか?
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
`/* 〜〜 */` ならコメント文ですが、上記の内容では、コメント文になっていないので、この行で文字が出力されたことになります。
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
そのため、これ移行の `header( 〜 )` 関数はすべて、`Warning: Cannot modify header information - headers already sent by 〜` の Warning になります。
|