-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathtag.php
43 lines (40 loc) · 1.47 KB
/
tag.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
<?php
/*
* @author parklot
* @link https://github.com/paopao233
*/
get_header(); ?>
<main id="body">
<div class="container">
<div class="divider"></div>
<!--文章内容区-->
<div class="post-body">
<!--首页-->
<div class="text-center bg-light py-2">
"<span class="text-danger"> <?php single_tag_title(); ?> </span>" 的相关活动线报
</div>
<!--blog posts-->
<ul class="list-group post-list mt-3">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li class="list-group-item px-0">
<div class="subject break-all">
<h2><a class="mr-1" href="<?php the_permalink(); ?>""
title="<?php the_title(); ?>" target="_blank" rel="bookmark"><?php the_title(); ?></a>
</h2>
<?php the_tags('', '', ''); ?>
</div>
<span class="num-font text-muted" style="flex-shrink: 0;"><?php the_time('Y-m-d H:i') ?>
</span>
</li>
<?php endwhile; ?>
</ul>
<!--分页-->
<ul class="pagination justify-content-center mt-md-5 mt-3 num-font">
<?php baolog_pagenavi(); ?>
</ul>
<?php endif; ?>
</div>
</div>
</main>
<?php get_sidebar();?>
<?php get_footer(); ?>