WordPressでホームページを作成しています。
htmlで元となるページを作成し、WordPressのオリジナルテーマとして組み直しています。
カスタム投稿をアイキャッチで一覧表示し、クリックするとモーダルウィンドウで内容を表示する仕組みにしたいです。
###現状
・htmlコード上では作用していて、phpの記述も狙い通りのhtmlコードが生成されているのですがモーダルウィンドウが機能しません
・カスタム投稿は「Custom Post Type UI」にて作成
・モーダルウィンドウはプラグイン不使用のjQuery
・Localを使用してWordPress環境テスト中
###試したこと
・投稿一覧をhtmlコードの状態、モーダル側をサブループで呼び出したコードの状態だとモーダルウィンドウは作動しますが、投稿一覧をサブループで呼び出したコード、モーダル側をhtmlコードの状態だと作動しません。
現状のコード
php
1<!-- アイキャッチ一覧 --> 2<ul> 3 <?php 4 $args = array( 5 'posts_per_page' => -1, 6 'post_type' => 'hoge' 7 ); 8 $the_query = new WP_Query( $args ); 9 if ( $the_query->have_posts() ) :?> 10 <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?> 11 <li> 12 <a class="modal_open" date-target="<?php the_ID(); ?>" href=""> 13 <?php $image_id = get_post_thumbnail_id(); 14 $image_url = wp_get_attachment_image_src($image_id, true);?> 15 <img src="<?php echo $image_url[0]; ?>" alt="<?php the_title(); ?>"> 16 <h3 class="left_top"><?php the_title(); ?></h3> 17 </a> 18 </li> 19 <?php endwhile;?> 20 <?php wp_reset_postdata(); endif; ?> 21</ul> 22 23<!-- モーダルウィンドウ --> 24<ul> 25<?php 26 $args = array( 27 'posts_per_page' => -1, 28 'post_type' => 'hoge' 29 ); 30 $the_query = new WP_Query( $args ); 31 if ( $the_query->have_posts() ) :?> 32 <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?> 33 <li id="<?php the_ID(); ?>" class="modal"> 34 <div class="modal_bg modal_close"></div> 35 <div class="modal_content"> 36 <h3><?php the_title(); ?><span>(<?php the_time('Y'); ?>)</span></h3> 37 <?php the_content(); ?> 38 <p class="modal_close">close</p> 39 </div> 40 </li> 41 <?php endwhile;?> 42 <?php wp_reset_postdata(); endif; ?> --> 43</ul>
jquery
1$(function(){ 2 $('.modal_open').each(function(){ 3 $(this).on('click',function(){ 4 var target = $(this).data('target'); 5 var modal = document.getElementById(target); 6 $(modal).fadeIn(); 7 return false; 8 }); 9 }); 10 $('.modal_close').on('click',function(){ 11 $('.modal').fadeOut(); 12 return false; 13 }); 14}); 15
なにか解決策いただけますとありがたいです。
###追記(2021.6.6)
コンソールでのエラーはScssを利用しているのでそれに関する注意がでています。
DevTools failed to load source map: Could not load content for http://sm.local/wp-content/themes/original202105/style.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
サブループ に入れる前段階ではモーダル作用します。
php
1<ul> 2 <li> 3 <a class="modal_open" data-target="hoge" href=""> 4 <img src="<?php echo get_template_directory_uri(); ?>/images/nowprinting.gif" alt=""> 5 <h3 class="left_top">タイトルが入ります</h3> 6 </a> 7 </li> 8</ul> 9 10<!-- モーダルウィンドウ --> 11<ul class="modal_wrapper"> 12 <li id="hoge" class="modal"> 13 <div class="modal_bg modal_close"></div> 14 <div class="modal_content"> 15 <h3>test<span>(yyyy)</span></h3> 16 <img src="<?php echo get_template_directory_uri(); ?>/images/noimages.png" alt=""> 17 <p>テスト</p> 18 <p class="modal_close">close</p> 19 </div> 20 </li> 21</ul>