質問編集履歴
1
ショートコードの記述を追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -32,6 +32,32 @@
|
|
32
32
|
|
33
33
|
|
34
34
|
|
35
|
+
ショートコードは以下のように記載しています。
|
36
|
+
|
37
|
+
```PHP
|
38
|
+
|
39
|
+
function shop_url1_shortcode(){
|
40
|
+
|
41
|
+
$urlShop1 = get_post_meta(get_the_ID(), 'shop_url1', true);
|
42
|
+
|
43
|
+
if (!empty($urlShop1)){
|
44
|
+
|
45
|
+
return $urlShop1;
|
46
|
+
|
47
|
+
}
|
48
|
+
|
49
|
+
}
|
50
|
+
|
51
|
+
add_shortcode('Shop_URL1','shop_url1_shortcode')
|
52
|
+
|
53
|
+
```
|
54
|
+
|
55
|
+
**shop_url1**にカスタムフィールドに入力された値(URL)が保存されています。
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
|
35
61
|
そもそもこういう使い方はできないものなのでしょうか?
|
36
62
|
|
37
63
|
|