質問編集履歴

1

コードブロックで囲いました。

2018/02/13 12:37

投稿

bearmax0218
bearmax0218

スコア11

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  functions.phpに
4
4
 
5
- ====
5
+ ```
6
6
 
7
7
  function redirect_after_comment() {
8
8
 
@@ -14,7 +14,7 @@
14
14
 
15
15
  add_filter( 'comment_post_redirect', 'redirect_after_comment' );
16
16
 
17
- ====
17
+ ```
18
18
 
19
19
  を記述し動作した。
20
20
 
@@ -30,7 +30,7 @@
30
30
 
31
31
  それぞれのコメントページへコメントしたタイミングでサンクスページへリダイレクトさせたい。
32
32
 
33
- ====
33
+ ```
34
34
 
35
35
  function redirect_after_comment() {
36
36
 
@@ -46,7 +46,7 @@
46
46
 
47
47
  add_filter( 'comment_post_redirect', 'redirect_after_comment' );
48
48
 
49
- ====
49
+ ```
50
50
 
51
51
  しかし、コメントしても/wp-comments-post.phpで止まって白いページのまま。
52
52
 
@@ -54,7 +54,7 @@
54
54
 
55
55
 
56
56
 
57
- ====
57
+ ```
58
58
 
59
59
  if ( is_single('12') ) {
60
60
 
@@ -64,7 +64,7 @@
64
64
 
65
65
  }
66
66
 
67
- ====
67
+ ```
68
68
 
69
69
  は、テストでheader.phpの一番上に記述し問題なくリダイレクトした。
70
70