front-page.php(固定ページの表示したい場所に記述)
1 2 3 4 5 6 7 8 9 10 11 12 |
<h2>最新BLOG</h2> <?php /*--ここから、最新の投稿記事取得一覧--*/?> <?php echo '<ul id="test">'; $posts = get_posts(); foreach($posts as $post): setup_postdata($post);?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; echo '</ul>'; ?> |