此模板建立是为了满足不同分类调用不同日志详情页的需求,方法如下
一、首先在single.php文件写下如下代码
<div class="left-box">
<?php
the_post();
$cat = get_the_category($post->ID);
$name = $cat[0]->slug; //调用分类别名
get_template_part('content',$name); //获得content-分类别名.php文件
?>
</div>
get_the_category() //注:获取当前文章的对应的分类
用法
get_the_category(get_the_ID())或get_the_category($post->ID)
get_template_part() //注:自定义模板文件调用函数
二、在content.php模板文件和content-分类别名.php模板文件写入日志详情模板代码,如果存在content-分类别名.php,则相应的分类的日志详情页会调用content-分类别名.php模板,如果不存在content-分类别名.php模板文件,则日志详情页模板调用content.php模板文件
发表评论