前提・実現したいこと
作成済みのサイトをWordpress化するにあたり、
functions.phpに複数のcss、jsファイルを読み込ませたい。
下記のサイトの手順に従って作業を進めていたが、
全てのCSS、JSファイルが読み込まれていないことに気づいた。
https://haniwaman.com/static-to-wordpress/#CSSJavaScript
発生している問題・エラーメッセージ
最初の1行目のファイル(下記ではbase.css)のみ効いています。
それ以降は機能していません。
Failed to load resource: the server responded with a status of 404 (Not Found) base.css:1 Failed to load resource: the server responded with a status of 404 (Not Found) style.min.css:1 Failed to load resource: the server responded with a status of 404 (Not Found) jquery.bxslider.css:1 Failed to load resource: the server responded with a status of 404 (Not Found) lightbox.min.css:1 Failed to load resource: the server responded with a status of 404 (Not Found) main.js:1 ・・・
該当のソースコード
php
1 2<?php 3 4function my_scripts() { 5 wp_enqueue_style( 'style-name', get_template_directory_uri() . '/css/base.css', array(), '1.0.0', 'all' ); 6 wp_enqueue_style( 'style-name', get_template_directory_uri() . '/css/style.min.css', array(), '1.0.0', 'all' ); 7 wp_enqueue_style( 'style-name', get_template_directory_uri() . '/css/jquery.bxslider.css', array(), '1.0.0', 'all' ); 8 wp_enqueue_style( 'style-name', get_template_directory_uri() . '/css/lightbox.min.css', array(), '1.0.0', 'all' ); 9 wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/main.js', array( 'jquery' ), '1.0.0', true ); 10 wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/smooth-scroll.polyfills.min.js', array( 'jquery' ), '1.0.0', true ); 11 wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/jquery.bxslider.min.js', array( 'jquery' ), '1.0.0', true ); 12 wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/lightbox.min.js', array( 'jquery' ), '1.0.0', true ); 13 } 14add_action( 'wp_enqueue_scripts', 'my_scripts' ); 15?> 16
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/29 02:19