代码拉取完成,页面将自动刷新
<?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">
<!-- 侧边目录 -->
<?php get_template_part( './template/index/sidebar-left' ); ?>
<!-- 文章 -->
<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 echo the_content(); ?>
</div>
<!-- 文章底部 -->
<?php get_template_part( './template/index/article-footer' ); ?>
</article>
<?php
/* 底部推荐区域 */
if ( is_active_sidebar( 'content_down' ) ) {
dynamic_sidebar( 'content_down' );
}
?>
<!-- 文章评论 -->
<?php comments_template(); ?>
</div>
<?php get_template_part( './template/index/sidebar-right' ); ?>
</main>
<!--角标-->
<?php get_template_part( './template/index/fixed' ); ?>
<?php
}
get_footer();
?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。