1 Star 1 Fork 0

特快云/kratos-pjax

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.php 2.63 KB
一键复制 编辑 原始数据 按行查看 历史
小白-白 提交于 2018-10-20 00:58 . [Update] New Version 0.3.1
<?php get_header(); ?>
<div id="container" class="container">
<div class="row">
<?php if(kratos_option('home_side_bar')=='left_side'){ ?>
<aside id="kratos-widget-area" class="col-md-4 hidden-xs hidden-sm scrollspy">
<div id="sidebar" class="affix-top">
<?php dynamic_sidebar('sidebar_tool'); ?>
</div>
</aside>
<?php } ?>
<section id="main" class="<?php echo (kratos_option('home_side_bar')=='center')?'col-md-12':'col-md-8'; ?>">
<?php
if(is_home()){kratos_banner();}
elseif(is_category()){
if(kratos_option('show_head_cat')){ ?>
<div class="kratos-hentry clearfix">
<h1 class="kratos-post-header-title"><?php _e('分类:','moedog');echo single_cat_title('',false); ?></h1>
<h1 class="kratos-post-header-title"><?php echo category_description(); ?></h1>
</div>
<?php }
}elseif(is_tag()){
if(kratos_option('show_head_tag')){ ?>
<div class="kratos-hentry clearfix">
<h1 class="kratos-post-header-title"><?php _e('标签:','moedog');echo single_cat_title('',false); ?></h1>
<h1 class="kratos-post-header-title"><?php echo category_description(); ?></h1>
</div>
<?php }
}elseif(is_search()){ ?>
<div class="kratos-hentry clearfix">
<h1 class="kratos-post-header-title"><?php _e('搜索结果:','moedog');the_search_query(); ?></h1>
</div>
<?php }
if(have_posts()){
while(have_posts()){
the_post();
get_template_part('/inc/content-templates/content',get_post_format());
}
}else{ ?>
<div class="kratos-hentry clearfix">
<h1 class="kratos-post-header-title"><?php _e('很抱歉,没有找到任何内容。','moedog'); ?></h1>
</div>
<?php }
kratos_pages(3);wp_reset_query(); ?>
</section>
<?php if(kratos_option('home_side_bar')=='right_side'){ ?>
<aside id="kratos-widget-area" class="col-md-4 hidden-xs hidden-sm scrollspy">
<div id="sidebar" class="affix-top">
<?php dynamic_sidebar('sidebar_tool'); ?>
</div>
</aside>
<?php } ?>
</div>
</div>
</div>
<?php get_footer(); ?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/kmtky/kratos-pjax.git
git@gitee.com:kmtky/kratos-pjax.git
kmtky
kratos-pjax
kratos-pjax
master

搜索帮助