data/attach/1904/fkqw3zzba4fri56yyabngyft56gpz9an.jpg
category.php的制作
- php
- /* 功能:
- * 判断是否为分类目录别名,如果不是,则使用category-default.php 分类目录模板
- * 如果是,则使用对应的分类目录模板
- */
- if ( is_category('pic') ) { //当访问 http://www.cnsecer.com/pic这个分类时,使用category-pic.php这个模板
- include(TEMPLATEPATH . '/cate-thumb.php');
- }
-
- // elseif 结束 //如果访问其他分类,则使用category-default.php'这个模板
- else {
- include(TEMPLATEPATH . '/cate-default.php');
- }
- ?>
-
-
然后就是他们两个都包含了右边的那个sidebar,sidebar的这个我们先不讲,等category的讲完了再讲sidebar。
首先来看下第一种category的主要代码
他大致包含三个部分:左边缩略图,文章标题和文章内容。
缩略图代码如下
-
class="col-md-3 hidden-xs">-
-
-
- //col-md-3 hidden-xs 都是bootstrap的属性 ,详细说明请查看: href="http://v3.bootcss.com/css/#responsive-utilities">http://v3.bootcss.com/css/#responsive-utilities
-
- //php post_thumbnail_src();?> 显示缩略图
-
显示文章标题和文章内容:
-
-
class="col-md-9">-
class="cate-article-content">-
class="hcontent">- php the_permalink() ?>" target="_blank">php echo mb_strimwidth(get_the_title(), 0, 43,"...") ?>
-
-
class="fcontent">- php echo mb_strimwidth(strip_tags($post->post_content), 0,550,"..."); ?>
-
-
-
-
-