タイトルの通りです。
<?php $recent_posts = wp_get_recent_posts(array( 'numberposts' => 4 )); foreach($recent_posts as $post) :?> <div class="article-block"> <a href="<?php echo get_permalink($post->ID);?>"> <div class="article-image"> <?php echo get_the_post_thumbnail($post); ?> </div> <div class="article-description"> <div class="article-heading"><?php echo $post->post_title;?></div> <div class="article-detail"> <div class="article-category"><?php echo wp_get_post_categories( $post->ID)?></div> </div> </div> </a> </div> <?php endforeach; ?>
記事データは入ってるはずです。けれど、配列の中身が空です。
ご教授お願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/12 03:28