<?php if ( have_posts() ): ?> <?php while ( have_posts() ) : the_post(); ?> <div class="col-md-4"> <article id="post-<?php the_ID(); ?>" <?php post_class('news'); ?>> <div class="news_pic"> <a href="<?php the_permalink(); ?>"> <?php if ( has_post_thumbnail() ): ?> <?php the_post_thumbnail('medium'); ?> <?php else: ?> <img src="<?php echo get_template_directory_uri(); ?>/assets/img/common/noimage_600x400.png" alt=""> </a> </div> <div class="news_meta"> <?php the_category(); ?> <time class="news_time" datetime="<?php the_time('Y-m-d'); ?>"><?php the_time('Y年m月d日');?></time> </div> <h2 class="news_title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <div class="news_desc"> <?php the_excerpt(); ?> <p><a href="<?php the_permalink(); ?>">[続きを読む]</a></p> </div> </article> </div> <?php endwhile; ?> <?php endif; ?>
どんなエラーがでていて、そのエラーに対して調べたこと試したことを記載してください。
回答2件
あなたの回答
tips
プレビュー