前提・実現したいこと
syntax error, unexpected end of fileのエラー箇所がわからない
ヘディングのテキスト
<?php if ( have_posts() ): ?> <?php while ( have_posts() ) : the_post(); ?> <article class="article__item"> <a href="<?php the_permalink(); ?>"> <h1><?php the_title(); ?></h1> <time><?php the_time(); ?></time> </a> </article> <?php ?> $wp_query = new WP_Query(); $my_posts = array( 'post_type' => "post",// 'paged' => get_query_var( 'paged', 3 ) ); $wp_query->query( $my_posts ); if( $wp_query->have_posts() ): while( $wp_query->have_posts() ) : $wp_query->the_post(); ?> <?php?> <ul> <li><a href="<?php echo get_permalink(); ?>"> <div> <?php // if ( has_post_thumbnail()) { // the_post_thumbnail(); } else { // echo '<img src="noimage.jpg">'; } ?></div> <div> <h2><?php the_title(); ?></h2></div> <div> <?php the_time('Y/m/d'); ?></div> <?php $categories = get_the_category(); if ( $categories ) { echo '<ul>'; foreach ( $categories as $category ) { echo '<li class="cat1"'.$category->slug.'"><a href="'.esc_url(get_category_link($category->term_id)).'">'.$category->name.'</a></li>'; } echo '</ul>'; } ?> <?php $num_comments = get_comments_number(); if ( $num_comments == 0 ) { $comments = __('No Comments'); // } elseif ( $num_comments > 1 ) { $comments = $num_comments . __(' Comments'); // } else { $comments = __('1 Comment'); // } $write_comments = '<span class="singlecomments"><a href="' . get_comments_link() .'">'. $comments.'</a></span>'; echo $write_comments; ?> <div> <?php the_excerpt(); ?></div> <div> <a href="<?php the_permalink(); ?>">記事を読む</a></div> </ul> <?php endwhile; ?> <nav> <?php global $wp_query; $big = 999999999; echo paginate_links( array( 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), 'format' => '?paged=%#%', 'current' => max( 1, get_query_var('paged') ), 'total' => $wp_query->max_num_pages ) ); ?> </nav> <?php else: ?> <p>Not Found.</p> <?php endif; ?> <form method="get" id="searchform" action="<?php bloginfo('url'); ?>"> <label for="s" class="assistive-text">検索</label> <input type="text" name="s" id="s" placeholder="検索" /> <input type="submit" value="検索" /> </form> <?php get_footer(); ?>
発生している問題・エラーメッセージ
構文エラー、予期しないファイルの終わり
回答1件
あなたの回答
tips
プレビュー