困っていること
WordPressでオリジナルテーマを用いてサイトを構築しており、jsファイルが読み込めず困っています。
エラーの内容:undefined is not a function (near '...$...')
functions.phpは下記のとおりです。
php
1<?php 2 3function my_scripts() { 4 wp_enqueue_script( 'script', get_template_directory_uri() . '/js/script.js', array( 'jquery' ), '1.0.2', true ); 5 } 6 add_action( 'wp_enqueue_scripts', 'my_scripts' );
header.phpには<?php wp_head(); ?>を記述しています。
php
1<head> 2 <meta charset="utf-8"> 3 <title> 4 <?php 5 if ( !is_home() ){ 6 wp_title('-', true, 'right'); 7 } 8 bloginfo('name'); 9 ?> 10 </title> 11 <link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/css/normalize.css"> 12 <link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/style.css"> 13 <link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="stylesheet"> 14 <link href="https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500|Roboto:400,500&display=swap" rel="stylesheet"> 15<?php wp_head(); ?> 16</head>
こちらの記事を参考にしました
https://haniwaman.com/load-css-js/
わかる方いらっしゃいましたら教えていただきたいです。
よろしくお願いいたします。
試したこと
同じようにfunction.phpにwp_enqueue_styleを用いて記述したところ、cssファイルは読み込む事ができました。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/01 13:49
2020/05/01 13:50
2020/05/01 14:12