加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.php 1.74 KB
一键复制 编辑 原始数据 按行查看 历史
<?php get_header(); ?>
<div id="main">
<div class="row box">
<div class="col-md-8">
<?php while ( have_posts() ) : the_post(); ?>
<?php if ( is_sticky() ) : ?>
<h2 class="uptop"><i class="fa fa-arrow-circle-up" aria-hidden="true"></i> <a href="<?php the_permalink() ?>" target="_blank"><?php the_title(); ?></a></h2>
<?php else : ?>
<article class="article-list-1 clearfix">
<header class="clearfix">
<h1 class="post-title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<div class="post-meta">
<span class="meta-span"><i class="fa fa-calendar"></i> <?php the_time('m月d日') ?></span>
<span class="meta-span"><i class="fa fa-folder-open-o"></i> <?php the_category(',') ?></span>
<span class="meta-span"><i class="fa fa-commenting-o"></i> <?php comments_popup_link ('没有评论','1条评论','%条评论'); ?></span>
<span class="meta-span hidden-xs"><i class="fa fa-tags" aria-hidden="true"></i> <?php the_tags('',',',''); ?></span>
</div>
</header>
<div class="post-content clearfix">
<p><?php echo mb_strimwidth(strip_tags(apply_filters('content', $post->post_content)), 0, 200,"..."); ?></p>
</div>
</article>
<?php endif; ?>
<?php endwhile; ?>
<nav style="float:right">
<?php pagination($query_string); ?>
</nav>
</div>
<div class="col-md-4 hidden-xs hidden-sm">
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php get_footer(); ?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化