日期:2014-11-28 阅读:3476
dmandwp系统 - wordpress系统和DM系统区块建站>>
首先要看下官网关于模板层级的文档:
http://codex.wordpress.org/Template_Hierarchy
---
找到
Custom Taxonomies display
taxonomy-{taxonomy}.php ---看到这个,我们就是要用这个。
比如我们在上节课创建了catproduct这个分类,那就可以 加个模板文件为:taxonomy-catproduct.php
注意,不是文章类型post-type,也不是slug。
------------
还有另一种做法,就是用 get_post_type() :
由于我们用的是spacious这个主题,所以可以在archive.php里加上这个:
<?php
if ( 'tvproduct' == get_post_type() )
get_template_part( 'content-tvcatproduct', get_post_format() );
else
get_template_part( 'content', get_post_format() );
?>
-------------------------