前提・実現したいこと
下記のエラーを文法チェックで知りましたが、私の肉眼では見つけられませんでした。
()の抜けがないかを調べましたが、、できませんでした。
何卒よろしくお願いいたします。<(_ _)>
発生している問題・エラーメッセージ
PHP Parse error: syntax error, unexpected end of file in Standard input code on line 261
試したこと
・どこに間違えがあるのかを調べるためにコピー&ペーストをくりかえすと、
PHP
1 <?php 2 $query_args = array( 3 'post_status'=> 'publish', 4 'post_type'=> 'post', 5 'posts_per_page'=>3 6 );
下記のコードと下のPHPコードでうまくかみ合っていない箇所がありそうです。
恐れ入りますがご教授頂けると幸いです。
よろしくお願いいたします。
該当のソースコード
php
1 <?php 2 $query_args = array( 3 'post_status'=> 'publish', 4 'post_type'=> 'post', 5 'posts_per_page'=>3 6 ); 7 $the_query = new WP_Query( $query_args ); //$the queryで定義づけ 8 9 if($the_query-> have_posts() ) : 10 // 記事が存在したとき 11 while ( $the_query->have_posts() ): 12 $the_query->the_post(); //ループのインクリメントの役割、これがないと無限ループになるので注意 13 $link = get_permalink($post->ID); //記事url 14 $ttl = get_the_title($post->ID); //記事タイトル 15 ?> 16 17 <li id="post-<?php the_ID(); ?> <?php post_class('blog-item') ;?> 18 <a href="<?php echo $link;?> 19 <img alt="<?php echo get_template_directory_uri(); ?>サンプル1" src="<?php echo get_template_directory_uri(); ?>/TOP/img/sample01.jpg"> 20 <div class="blog-txt"> 21 <?php the_category(); ?> 22 <time class="time" datetime="<?php the_time('Y-m-d'); ?>"> 23 <?php the_time('Y-m-d'); ?> 24 </time> 25 </div><!-- /.blog-txt --> 26 </a> 27 </li><!-- /.blog-item --> 28<?php 29 endwhile; 30else: 31 //記事が存在しなかった場合 32 echo '<li class="blog-item">'; 33 echo '<div>申し訳ありません。記事がありません</div>'; 34 echo ' </li><!-- /.blog-item -->'; 35endif; 36wp_reset_query();//クエリをリセット 37?> 38
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/15 04:33