1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <div class="entry-content"> <?php the_excerpt(); ?> </div> </article> <?php endwhile; ?> <!-- 分页 --> <div class="pagination"> <?php the_posts_pagination(); ?> </div> <?php else : ?> <p>暂无文章</p> <?php endif; ?>
|