I am using Twenty twelve theme in wordpress to make a project. To display various styles of pages I can choose custom page template page, but I have to use category instead of pages. But how I make different category template and use them ? Thanks.
问问题
538 次
2 回答
3
您可以使用几乎与处理页面相同的方式来执行此操作。只需遵循 Wordpress 模板层次结构:
“category-slug.php”“category-ID.php”等 http://codex.wordpress.org/Category_Templates
所以,如果你有一个名为“ cars ”的类别,那么该类别的模板名称应该是“category - cars.php ”:)
编辑:晚了几分钟:(
于 2013-08-29T10:01:19.290 回答
1
您可以按 id 检查类别并在需要的地方使用本机功能。
get_template_part( 'custom_category', 'category' );
您也可以从这里尝试一些东西Wordpress Codex
于 2013-08-29T09:11:48.710 回答