-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
51 lines (45 loc) · 1.5 KB
/
page.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
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php get_header(); ?>
<?php wp_link_pages(); ?>
<div class="main__content">
<!-- Report -->
<div id="post-<?php the_ID(); ?>" <?php post_class("report"); ?>>
<?php
if (have_posts()) : // WordPress ループ
while (have_posts()) :
the_post(); // 繰り返し処理開始
?>
<div class="report__meta">
<div class="post_title">
<h2 class="reportbhb__title" style="border:0px;">
<a href="<?php the_permalink(); ?>"><?php echo get_the_title(); ?></a>
</h2>
</div>
</div>
<div class="entry_body">
<?php the_content(); ?>
</div>
</div>
<?php
$args = array(
'before' => '<div class="page-link">',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
);
wp_link_pages($args); ?>
<!-- /post navigation -->
<?php
endwhile; // 繰り返し処理終了
else : // ここから記事が見つからなかった場合の処理
include('no-article.php');
endif;
?>
</div>
<!-- /Report -->
<!-- removed sidebar -->
<div class="main__sidebar" style="margin-top:95px;">
<?php get_sidebar(); ?>
</div>
</div>
<!-- /Main Content -->
<?php get_footer(); ?>