前提・実現したいこと
ここに質問の内容を詳しく書いてください。
wordpress固定ページの画像表示
発生している問題・エラーメッセージ
コーデイングしたものをwordpressに移行してるのですが、固定ページの画像が表示されません。
エラーメッセージはありません。
該当のソースコード
page.php <?php get_header(); ?> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_post(); ?> <div class="main-wrapper"> <div class="container"> <?php the_content(); ?> </div> </div> <?php endwhile; ?> <?php endif; ?> <?php get_footer(); ?> 固定ページ <div class="title"> <img src="<?php echo get_template_directory_uri(); ?>/img/staff.jpg"> </div> <div class="staff-wrapper"> <div class="container"> <div class="row"> <div class="staff col-md-6 pr-1 mt-5 text-center"> <a href="staff-an.html"> <img src="<?php echo get_template_directory_uri(); ?>/img/staff-an.jpeg" width="335" height="200"> </a> <div class="job"><span>スタイリスト</span></div> </div> <div class="staff col-md-6 pr-1 mt-5 text-center"> <a href="staff-an.html"> <img src="<?php echo get_template_directory_uri(); ?>/img/staff-an.jpeg" width="335" height="200"> </a> <div class="job"><span>スタイリスト</span></div> </div> <div class="staff col-md-6 pr-1 mt-5 text-center"> <a href="staff-an.html"> <img src="<?php echo get_template_directory_uri(); ?>/img/staff-an.jpeg" width="335" height="200"> </a> <div class="job"><span>スタイリスト</span></div> </div> <div class="staff col-md-6 pr-1 mt-5 text-center"> <a href="staff-an.html"> <img src="<?php echo get_template_directory_uri(); ?>/img/staff-an.jpeg" width="335" height="200"> </a> <div class="job"><span>スタイリスト</span></div> </div> <div class="staff col-md-6 pr-1 mt-5 text-center"> <a href="staff-an.html"> <img src="<?php echo get_template_directory_uri(); ?>/img/staff-an.jpeg" width="335" height="200"> </a> <div class="job"><span>スタイリスト</span></div> </div> <div class="staff col-md-6 pr-1 mt-5 text-center"> <a href="staff-an.html"> <img src="<?php echo get_template_directory_uri(); ?>/img/staff-an.jpeg" width="335" height="200"> </a> <div class="job"><span>スタイリスト</span></div> </div> </div> </div> </div>
試したこと
パスの確認、誤字。teratail内の検索
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー