-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.php
More file actions
24 lines (22 loc) · 934 Bytes
/
archive.php
File metadata and controls
24 lines (22 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php get_header(); ?>
<div class="main-content">
<?php if(have_posts()): ?>
<?php while(have_posts()): the_post(); ?>
<!-- 繰り返し処理する内容 -->
<a href="<?php the_permalink(); ?>">
<div class="post">
<img src="<?php the_post_thumbnail_url(); ?>" alt="" class="post__img">
<div class="post__content">
<h2 class="post__title"><?php the_title(); ?></h2>
<? echo "<p class='post__text'>".get_the_excerpt()."</p>"; ?>
<a href="#"><?php the_category(); ?></a><a href="#"><?php the_time(); ?></a>
</div>
</div>
</a>
<?php endwhile; ?>
<?php else: ?>
<!-- 投稿データが取得できない場合の処理 -->
<p>投稿がありません</p>
<?php endif; ?>
</div>
<?php get_footer(); ?>