-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpage-links.php
41 lines (36 loc) · 980 Bytes
/
page-links.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
<?php
/**
Template Name: links
*/
get_header();
?>
<div class="layui-row content">
<div class="layui-col-md2 sidebar <?php get_self_adaption_css() ?>">
<?php get_sidebar(); ?>
</div>
<div class="layui-col-md10 post-content">
<div class="post-content-content">
<?php while(have_posts()) : the_post(); ?>
<?php if(!get_post_thumbnail_id(get_the_ID())) { ?>
<?php } ?>
<article <?php post_class("post-item"); ?>>
<?php the_content(); ?>
<div class="links">
<?php echo get_link_items(); ?>
</div>
</article>
<div class="have-toc"></div><div class="toc-container"><div class="toc"></div></div>
<?php endwhile; ?>
</div>
<div class="post-content-comments">
<?php
comments_template();
?>
</div>
</div>
</div>
</div>
</body>
<?php get_footer() ?>
<?php wp_footer(); ?>
</html>