現在wordpressにポートフォリオを移行中ですが、javascriptの読み込みに失敗しています。
HTMLのローカルではエラーなくjavascriptを読み込んでいます。
wordpressに移行したポートフォリオはreset.cssとstyle.cssの読み込みには成功しています。
本番環境wordpressでは
Failed to load resource: the server responded with a status of 404 ()
MAMPで動かしているwordpressは
Uncaught Cannot tween a null target. Failed to load resource: the server responded with a status of 404 (Not Found)
と出ています。
調べてはさまざまなjsの読み方を試していますが、エラーを解決できず途方に暮れています。
どこかは間違っているはずなのですが、わかりません。詳しい方、ぜひアドバイスをよろしくお願いいたします。
common/js/style.js
function add_cdn() { wp_register_script( 'TweenMax', 'https://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js' ); wp_enqueue_script( 'TweenMax' ); wp_enqueue_script( 'style', get_template_directory_uri() . '/common/js/style.js' ); } add_action( 'wp_enqueue_scripts', 'add_cdn' ); function add_files() { wp_enqueue_style( 'style.css', get_template_directory_uri() . '/common/css/style.css', "", '' ); wp_enqueue_style( 'reset.css', get_template_directory_uri() . '/common/css/reset.css', "", '' ); } add_action( 'wp_enqueue_scripts', 'add_files' ); /*--------------------------------- jQueryファイルの読み込み ---------------------------------*/ wp_deregister_script('jquery'); wp_enqueue_script( 'jquery', '//code.jquery.com/jquery-3.4.1.min.js' );
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。