代码拉取完成,页面将自动刷新
同步操作将从 friend-nicen/theme-document 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?php
/*
* 文章列表模板
* @author 友人a丶
* @date 2022-07-08
* */
/*
* 如果是单独获取分页
* */
nicen_theme_dynamicEcho(); //动态栏目,动态分页输出
/*如果不存在结果*/
if ( ! have_posts() && is_search() ) {
get_template_part( './template/index/empty' );
} else {
get_header();
?>
<main class="main-container index">
<?php get_template_part( './template/index/sidebar-index-left' ); ?>
<div class="main-main">
<?php
/*
* 首页显示小工具
* */
if ( is_home() && is_active_sidebar( 'index' ) ) {
dynamic_sidebar( 'index' );
}
?>
<?php get_template_part( './template/index/result' ); ?>
<!-- 文章 -->
<section class="main-content <?php /*根据不同分页输出不同样式*/
echo nicen_theme_getPagiantionType() == 2 ? "nopage" : "";
echo nicen_theme_config( 'document_dynamic', false ) && is_home() == 1 ? "hasDynamic" : "";
?>">
<!--动态加载文章-->
<?php get_template_part( './template/index/dynamic' ); ?>
<!--文章列表-->
<?php get_template_part( './template/index/article-list' ); ?>
</section>
</div>
<?php get_template_part( './template/index/sidebar-right' ); ?>
</main>
<!--角标-->
<?php get_template_part( './template/index/fixed' ); ?>
<!--底部信息-->
<?php get_footer();
} ?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。