質問編集履歴

1

補足情報追記しました。

2021/02/01 22:50

投稿

taketake08
taketake08

スコア16

test CHANGED
File without changes
test CHANGED
@@ -42,7 +42,7 @@
42
42
 
43
43
   /【親テーマディレクトリ】/css へ animate.cssを
44
44
 
45
-  /【親テーマディレクトリ】/js へ wow.jsと下記の.jsファイルをアップロード
45
+  /【親テーマディレクトリ】/js へ wow.min.jsと下記内容my-js.jsファイルをアップロード
46
46
 
47
47
 
48
48
 
@@ -53,6 +53,26 @@
53
53
  new WOW().init();
54
54
 
55
55
  });
56
+
57
+
58
+
59
+ ```
60
+
61
+ ② function.phpへ下記を追加
62
+
63
+ ```PHP
64
+
65
+ function wow_init() {
66
+
67
+ wp_enqueue_style('animate', 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');
68
+
69
+ wp_enqueue_script('wow', get_template_directory_uri() . '/js/wow.min.js', array(), false, true);
70
+
71
+ wp_enqueue_script('my-js', get_template_directory_uri() . '/js/my-js.js', array("jquery"), false, true);
72
+
73
+ }
74
+
75
+ add_action('wp_enqueue_scripts', 'wow_init');
56
76
 
57
77
 
58
78