加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
category.php 1.45 KB
一键复制 编辑 原始数据 按行查看 历史
<?php get_header(); ?>
<div id="main">
<?php while ( have_posts() ) : the_post(); ?>
<div class="post_list">
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="info"><?php the_author() ?> | <?php the_category(', ') ?> | <?php the_time('Y-m-d'); ?></div>
<div class="excerpt">
<?php if( function_exists('catch_that_image')&&catch_that_image()!='' ) { ?>
<div class="thumbnail"><a href="<?php the_permalink();?>" title="<?php the_title();?>"><img src="<?php echo catch_that_image() ?>" alt="<?php the_title();?>"/></a></div>
<?php } else { } ?>
<?php echo mb_strimwidth(strip_tags(apply_filters('content', $post->post_content)), 0, 330,"..."); ?> <span class="more">[<a href="<?php the_permalink() ?>" title="详细阅读 <?php the_title(); ?>" rel="bookmark">阅读全文</a>]</span>
</div>
<div class="meta">
<span class="meat_span"><i class="iconfont">&#279;</i> <?php if(function_exists(the_views)) { the_views('次浏览', true);}?></span>
<span class="meat_span"><i class="iconfont">&#54;</i> <?php comments_popup_link ('没有评论','1条评论','%条评论'); ?></span>
<span class="meat_span meat_max"><i class="iconfont">&#48;</i> <?php the_tags('', ', ', ''); ?></span>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<?php pagination($query_string); ?>
</div>
</div>
<?php get_sidebar('category'); ?>
<?php get_footer(); ?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化