-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpage.php
46 lines (41 loc) · 1.2 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
<?php
/*
* 文章页面模板
* @author 友人a丶
* @date 2022-07-08
* */
nicen_theme_setPostViews( get_the_ID() );//阅读次数加1
get_header();//加载顶部内容
/*
* 是否需要输入密码
* */
if ( post_password_required() ) {
get_template_part( './template/index/password' );
} else {
?>
<main class="main-container">
<!-- 文章 -->
<div class="main-main">
<article class="main-content">
<!-- 面包屑导航 -->
<?php get_template_part( './template/index/breadcrumb' ); ?>
<!-- 文章顶部 -->
<?php get_template_part( './template/index/article-header' ); ?>
<!-- 文章内容 -->
<div class="main-article">
<?php the_content() ?>
</div>
<!-- 文章底部 -->
<?php get_template_part( './template/index/article-footer' ); ?>
</article>
<!-- 文章评论 -->
<?php comments_template(); ?>
</div>
<?php get_template_part( './template/index/sidebar-right' ); ?>
</main>
<!--角标-->
<?php get_template_part( './template/index/fixed' ); ?>
<?php
}
get_footer();
?>