HotNewspro主题集成的自定义文章类型图片分类模板是一种类似九宫格的布局,有童鞋问普通日志分类可不可以使用该模板,答案是肯定的,也很简单。
下面是具体方法:

一、打开HotNewspro主题目录的category-id.php模板文件,用下面的代码替换全部:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php include('header_img.php'); ?>
<div id="images_content">
<div id="images_featured">
<?php $posts = query_posts($query_string . '&orderby=date&showposts=16');?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="grid">
<div class="top_t">
<?php include('includes/thumbnail.php'); ?>
</div>
<div class="top_box"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">详细内容</a></div>
<div class="boxCaption">
<h2><a href="<?php the_permalink(); ?>" title="Permalink to <?php the_title(); ?>"><?php echo cut_str($post->post_title,30); ?></a></h2>
</div>
</div>
<?php endwhile;?>
<div class="clear"></div>
</div>
<div id="pagenavi"><?php pagenavi(); ?></div>
</div>
<?php get_footer(); ?>

二、将category-id.php名称中的id改为某个分类的ID号,之后再次打开这个分类就会以九宫格布局展示内容。

**说明:**代码中的showposts=16数字是显示的篇数,可以根据需要修改。缩略图调用与其它普通日志相同。

点此查看演示

原文出处:http://zmingcx.com/hotnewspro-tu-pian-mo-ban.html