回答編集履歴
2
追記
answer
CHANGED
@@ -12,4 +12,14 @@
|
|
12
12
|
|
13
13
|
すいません、そこまではわかってるんですね
|
14
14
|
|
15
|
-
ではどういうエラーが出てるのか、ですね
|
15
|
+
ではどういうエラーが出てるのか、ですね
|
16
|
+
|
17
|
+
---
|
18
|
+
|
19
|
+
これかな、出力しちゃってますね
|
20
|
+
|
21
|
+
```php
|
22
|
+
$psttype_list='<li><h4 class="akijoho_h4">'.the_title().'</h4><p>'.the_content().'</p></li>';
|
23
|
+
↓
|
24
|
+
$psttype_list='<li><h4 class="akijoho_h4">'.get_the_title().'</h4><p>'.get_the_content().'</p></li>';
|
25
|
+
```
|
1
追記
answer
CHANGED
@@ -4,4 +4,12 @@
|
|
4
4
|
[ContactForm7独自のもの](https://contactform7.com/ja/2020/02/28/adding-a-custom-form-tag/)です
|
5
5
|
|
6
6
|
wpcf7_add_form_tagでタグ追加できます
|
7
|
-
add_shortcodeと使い方は同様
|
7
|
+
add_shortcodeと使い方は同様
|
8
|
+
|
9
|
+
---
|
10
|
+
|
11
|
+
追記:
|
12
|
+
|
13
|
+
すいません、そこまではわかってるんですね
|
14
|
+
|
15
|
+
ではどういうエラーが出てるのか、ですね
|