3 Star 15 Fork 1

Yiiven / WordPress Theme Yii

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.php 909 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
/**
* The main template file.
* @package yii
*/
?>
<?php get_header(); ?>
<div id="container" class="container">
<?php get_template_part("template/slider") ?>
<?php if(have_posts()) : //检查博客是否有日志 ?>
<main class="main">
<div class="block-content">
<?php while(have_posts()) : the_post(); //执行 the_post() 去调取日志 ?>
<?php get_template_part("template/article") ?>
<?php endwhile; ?>
</div>
</main>
<div class="page-navigation">
<?php yi_paged(); ?>
</div>
<?php else : //博客没有日志的时候执行 ?>
<div class="main">
<div class="post">
<h2><?php _e('博主很懒,什么也没留下...'); ?></h2>
</div>
</div>
<?php endif; ?>
</div>
<?php get_footer(); ?>
PHP
1
https://gitee.com/Yiiven/wp-theme-yii.git
git@gitee.com:Yiiven/wp-theme-yii.git
Yiiven
wp-theme-yii
WordPress Theme Yii
master

搜索帮助