前提・実現したいこと
ワードプレスでcss boostrap js jqueryなどを読み込む時に
<?php echo get_template_directory_uri(); ?>以外で何か必要なことはありますでしょうか?
ローカル環境のMAMPで表示されれば良いです。
発生している問題・エラーメッセージ
GET http://localhost/wp01/wp-content/themes/webst8mystyle.css net::ERR_ABORTED 404 (Not Found)
localhost/:7 GET http://localhost/wp01/wp-content/themes/webst8https:/maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css net::ERR_ABORTED 404 (Not Found)
localhost/:10 GET http://localhost/wp01/wp-content/themes/webst8https:/maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js net::ERR_ABORTED 404 (Not Found)
localhost/:9 GET http://localhost/wp01/wp-content/themes/webst8https:/code.jquery.com/jquery-3.2.1.min.js net::ERR_ABORTED 404 (Not Found)
localhost/:10 GET http://localhost/wp01/wp-content/themes/webst8https:/maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js net::ERR_ABORTED 404 (Not Found)
該当のソースコード
以下phpです
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>ウェブストエイト</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>mystyle.css"> <script src="<?php echo get_template_directory_uri(); ?>https://code.jquery.com/jquery-3.2.1.min.js"></script> <script src="<?php echo get_template_directory_uri(); ?>https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <?php wp_head(); ?> </head>回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/07 09:18