为Wordpress类别创建一个目录

时间:2012-04-03 08:43:37

标签: wordpress

我想设计一个新类别,此类别将与家庭博客分开。而这只猫有它自己的布局和设计方式。我尝试过category.php,但它没有用:(

    Example:
    wordpress/reviews NOT wordpress/category/reviews 

在wordpress中有没有办法做到这一点?

3 个答案:

答案 0 :(得分:2)

检查yourlogs.com/wp-admin/options-permalink.php中的永久链接选项(看起来无法删除/类别*)

_ *尝试写一个点“。”或使用http://wordpress.org/extend/plugins/wp-no-category-base/

答案 1 :(得分:0)

请参阅:http://codex.wordpress.org/Category_Templates

<?php if (is_category('Category A')) : ?>
<p>This is the text to describe category A</p>
<?php elseif (is_category('Category B')) : ?>
<p>This is the text to describe category B</p>
<?php else : ?>
<p>This is some generic text to describe all other category pages, 
I could be left blank</p>
<?php endif; ?>

答案 2 :(得分:0)

您可以设计不同的页面模板,然后将每个模板分别应用于每个类别,通过这样做,您可以为每个类别进行不同的设计。