-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.php
38 lines (34 loc) · 893 Bytes
/
archive.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
get_header(); ?>
<div id="content">
<section>
<div id="top-entry">
<ul class="flex_wrap">
<?php
if ( have_posts() ):
while ( have_posts() ) :the_post();
$pattern = SCF::get( 'pattern' );
$name = SCF::get( 'name' );
?>
<li>
<a href="<?php the_permalink(); ?>">
<p class="t-entry-day"><?php the_time('Y.m.d'); ?></p>
<p class="t-entry-pt"><?php echo esc_html( $pattern ) ?></p>
<?php the_post_thumbnail('full'); ?>
<p class="t-entry-ttl"><?php the_title(); ?><br><span><?php echo esc_html( $name ) ?></span></p>
</a>
</li>
<?php
endwhile;
else:
echo'記事はありません。';
endif;?>
</ul>
</div>
<!-- top-entry -->
</section>
</div>
<!-- content -->
<?php
get_footer();
?>