wordpress カテゴリーページに新着記事表示させたい
wordpressでcategory-all.phpというファイルを作ってその中で新着記事を3件表示させたいのですが、
表示されません。エラーメッセージは出ず表示したい所に何も表示されていない状態です。
front-page.phpの方にも同じコードを貼っているのですが、front-page.phpの方は
3件表示されています。
該当のソースコード
<?php if ( have_posts() ) : ?><?php while ( have_posts()) :the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class('news'); ?>> <section class="blog-card-list"> <a class="blog-card-link" href="<?php the_permalink(); ?>"> <figure class="blog-card-figure"> <?php if( has_post_thumbnail() ): ?> <?php the_post_thumbnail( array(210,150) ); ?></figure> <?php else: ?> <img src="<?php echo get_template_directory_uri(); ?>/_assets/img/blog1.jpg"> <?php endif; ?> </a> <p class="blog-date"><?php the_time('Y/m/d'); ?></p> <p class="blog-txt"><a href="<?php the_permalink(); ?>"><?php the_excerpt(); ?></a></p> <div class="blog-bottom"> <div class="cate-left"> <?php the_category();?> </div><!--cate-left--> <div class="heart-right"> <?php if(function_exists('the_ratings')) { the_ratings(); } ?> </div><!--heart-right--> </div><!--blog-bottom--> </section> </article> <?php endwhile; ?> <?php endif; ?>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。