-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
50 lines (37 loc) · 1.23 KB
/
single.php
File metadata and controls
50 lines (37 loc) · 1.23 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
<?php get_header(); ?>
<div id="main" class="container"><!-- main start -->
<div id="posts"><!-- posts start -->
<?php
if (have_posts()) :
while (have_posts()):
the_post();
?>
<div class="post">
<div class="post-header">
<h2>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?>
</h2>
<div class="post-meta">
<?php get_the_date(); ?>【<?php the_category(', '); ?>】
</div>
</div>
<div class="post-content">
<?php the_content(); ?>
</div>
</div><!-- /post -->
<div class="navigation">
<div class="prev"><?php previous_post_link(); ?></div>
<div class="next"><?php next_post_link(); ?></div>
</div><!-- navigation end -->
<?php
endwhile;
else:
?>
<p>記事はありません!</p>
<?php
endif;
?>
</div><!-- /posts -->
<?php get_sidebar(); ?>
</div><!-- main end -->
<?php get_footer(); ?>