質問編集履歴

2

追記

2017/04/04 07:14

投稿

murama2
murama2

スコア113

test CHANGED
File without changes
test CHANGED
@@ -65,3 +65,11 @@
65
65
  WP Multibyte Patch:2.81
66
66
 
67
67
  カスタムフィールドテンプレート:2.37
68
+
69
+
70
+
71
+ == 追記 ==
72
+
73
+ WordPressの管理画面でConsoleを開いたところ「This API project is not authorized to use this」というエラーをはいていたのでGoogleapiを有効設定しましたところ、無事動きました。
74
+
75
+ しかし数時間後また動作確認したところまた「This API project is not authorized to use this」というエラーをはいて動かなくなってしまいました

1

情報追記

2017/04/04 07:14

投稿

murama2
murama2

スコア113

test CHANGED
File without changes
test CHANGED
@@ -11,3 +11,57 @@
11
11
  これは単純にレスポンスが遅くなってしまってるなどが原因なのでしょうか?
12
12
 
13
13
  知恵をお貸いただけると助かります。
14
+
15
+
16
+
17
+ apiキー設定
18
+
19
+ ```ここに言語を入力
20
+
21
+ //GoogleMapのapiキー設定用
22
+
23
+ function my_acf_google_map_api( $api ){
24
+
25
+ $api['key'] = 'apiキー';
26
+
27
+ return $api;
28
+
29
+ }
30
+
31
+ add_filter('acf/fields/google_map/api', 'my_acf_google_map_api');
32
+
33
+ ```
34
+
35
+
36
+
37
+ 「Advanced Custom Fields」への設定は下記URLページを参考にしました。
38
+
39
+ [参考ページ](http://taneakashi.ad-mk.com/advanced-custom-field-googlemap.html)
40
+
41
+
42
+
43
+
44
+
45
+ 使用している物
46
+
47
+ WordPress : 4.72
48
+
49
+
50
+
51
+ プラグイン
52
+
53
+ Advanced Custom Fields:4.4.11
54
+
55
+ Category Order and Taxonomy Terms Order:1.49
56
+
57
+ Contact Form 7:4.61
58
+
59
+ Custom Post Type UI:1.52
60
+
61
+ Duplicate Post:3.12
62
+
63
+ Meta Slider:3.41
64
+
65
+ WP Multibyte Patch:2.81
66
+
67
+ カスタムフィールドテンプレート:2.37