开源夏令营(9)总结

2019-04-15 14:44发布

data/attach/1904/fkqw3zzba4fri56yyabngyft56gpz9an.jpg category.php的制作
  1. php
  2. /* 功能:
  3. * 判断是否为分类目录别名,如果不是,则使用category-default.php 分类目录模板
  4. * 如果是,则使用对应的分类目录模板
  5. */
  6. if ( is_category('pic') ) { //当访问 http://www.cnsecer.com/pic这个分类时,使用category-pic.php这个模板
  7. include(TEMPLATEPATH . '/cate-thumb.php');
  8. }
  9.  
  10. // elseif 结束 //如果访问其他分类,则使用category-default.php'这个模板
  11. else {
  12. include(TEMPLATEPATH . '/cate-default.php');
  13. }
  14. ?>
  15.  
然后就是他们两个都包含了右边的那个sidebar,sidebar的这个我们先不讲,等category的讲完了再讲sidebar。 首先来看下第一种category的主要代码 他大致包含三个部分:左边缩略图,文章标题和文章内容。 缩略图代码如下
  1.  
  2. class="col-md-3 hidden-xs">
  3. class="thumb">
  4. href="#">php post_thumbnail_src();?>" alt="缩略图" class="img-rounded">
  •  
  • //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();?> 显示缩略图
  •  
  • 显示文章标题和文章内容:
    1.  
    2. class="col-md-9">
    3. class="cate-article-content">
    4. class="hcontent">
    5. 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,"..."); ?>

  •  


  • 热门文章