anon 发表于 2008-9-19 19:35:52

wp:谁再扩展一下,不同目录使用不同的 comments 的模板?

自己用的
需要的可以自己试试
建立文件代替原来的single.php
<?php

$post = $wp_query->post;

if ( in_category('1') ) {

include(TEMPLATEPATH . '/single1.php');

} elseif ( in_category('2') ) {

include(TEMPLATEPATH . '/single2.php');

} else {

include(TEMPLATEPATH . '/single_other.php');

}

?>

目录 1 的文章将使用 single1.php 模板,目录 2 的文章将使用 single2.php,其它文章将使用 single_other 模板。
为不同的目录使用不同的模板,你只需要简单地将模板保存为以 category-2.php 这种形式命名的文件,category-2.php 用来显示 ID 为 2 的目录,category-3.php 用来显示 ID 为 3 的目录,依次类推。
一般来说category使用的是achive.php

[ Last edited by anon on 2008-10-5 11:19 ]

草叶 发表于 2008-9-19 23:36:36

是个好东西,不错

陈汤 发表于 2008-9-20 11:37:59

受教了

renjinhua01 发表于 2008-9-27 11:38:07

恩,很好!!!

anon 发表于 2008-10-5 11:19:22

谁再扩展一下,不同目录使用不同的 comments 的模板?
页: [1]
查看完整版本: wp:谁再扩展一下,不同目录使用不同的 comments 的模板?