Wordpressを使ったサイト制作をしているのですがJavascriptファイルとCSSファイルの読み込みができません。
CSSファイル、Javascriptファイルともにindex.phpやfunctions.phpと同じ階層にあります。
また、cssファイルは読み込まれていますがJavascriptファイルだけが読み込まれていない状況です。
もしよろしければ原因を教えていただけると幸いです。
index.php(headの部分以外はあまり関係ないと思うので割愛させていただきます。)
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="keywords" content="共通キーワード" /> <meta name="description" content="<?php bloginfo('description'); ?>" /> <title><?php bloginfo('name'); ?></title> <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/https://cdnjs.cloudflare.com/ajax/libs/Swiper/5.3.8/css/swiper.min.css"> <script src="<?php echo get_template_directory_uri(); ?>/https://cdnjs.cloudflare.com/ajax/libs/Swiper/5.3.8/js/swiper.min.js"></script> <?php wp_head(); ?> </head>
functions.php
<?php function my_enqueue_scripts() { wp_enqueue_script('jquery'); wp_enqueue_script('script', get_template_directory_uri(). '/script.js' ); wp_enqueue_style('style', get_template_directory_uri(). '/style.css' ); } add_action('wp_enqueue_scripts', 'my_enqueue_scripts');
あなたの回答
tips
プレビュー