質問編集履歴
5
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -102,7 +102,7 @@
|
|
102
102
|
|
103
103
|
bbpressのreplyテンプレートから、Contact Form 7のテンプレートへリンク可能。
|
104
104
|
|
105
|
-
bbpress投稿IDも、Contact Form 7のURLに記載されます。
|
105
|
+
bbpress投稿IDも、Contact Form 7画面のURLに記載されます。
|
106
106
|
|
107
107
|
|
108
108
|
|
4
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -82,13 +82,17 @@
|
|
82
82
|
|
83
83
|
<Contact form 7のフォームに以下を記載>
|
84
84
|
|
85
|
+
```ここに言語を入力
|
85
86
|
|
86
|
-
|
87
|
-
<label>
|
87
|
+
<label> タイトル [text your-title ] </label>
|
88
88
|
|
89
89
|
<label> 本文/返信 [text your-comment ] </label>
|
90
90
|
|
91
91
|
|
92
|
+
|
93
|
+
[submit "送信"]
|
94
|
+
|
95
|
+
```
|
92
96
|
|
93
97
|
|
94
98
|
|
3
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -108,7 +108,7 @@
|
|
108
108
|
|
109
109
|
Contact Form 7のフック関数の変更方法がわかりません。
|
110
110
|
|
111
|
-
Cotnact Form 7の項目へ、トピックタイトルと本文
|
111
|
+
Cotnact Form 7の項目へ、トピックタイトルと本文の値を渡せません。
|
112
112
|
|
113
113
|
|
114
114
|
|
2
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<追加設定>
|
1
|
+
**<追加設定>**
|
2
2
|
|
3
3
|
〇子テーマ functions.phpに2関数を記載。
|
4
4
|
|
1
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -34,13 +34,13 @@
|
|
34
34
|
|
35
35
|
$name = $tag['name'];
|
36
36
|
|
37
|
-
if($name == 'your_title')
|
37
|
+
if($name == 'your_title'){
|
38
38
|
|
39
39
|
$tag['values'] = (array) $_POST['user_address']; // 本文?
|
40
40
|
|
41
|
+
}
|
41
42
|
|
42
|
-
|
43
|
-
|
43
|
+
}
|
44
44
|
|
45
45
|
return $tag;
|
46
46
|
|