Wordpress自定义帖子

时间:2013-10-24 08:14:36

标签: wordpress

我是wordpress世界的新手。我成功创建了自定义帖子,并将其显示在页面模板页面上。现在我想使用taxonomy- {category} .php和single- {post} .php来显示自定义帖子,但我在texonomy页面和sigle页面中感到困惑。如何工作和如何做。

在分类中 - {category} .php此类别是指我们的自定义类别名称还是其他?

在单{post} .php这里的帖子是指自定义帖子名称还是其他?

请帮我解决这个问题。

提前致谢。

2 个答案:

答案 0 :(得分:0)

请参阅Template_Hierarchy

上的Wordpress Codex
  
      
  • taxonomy- {taxonomy} .php - 如果分类法是sometax,WordPress   会寻找taxonomy-sometax.php
  •   
  • single- {post_type} .php - 如果帖子类型是产品,WordPress会寻找single-product.php。
  •   

示例:

post_type

在后端的在线商店自定义帖子类型中,网址为wp-admin/edit.php?post_type=store。 因此,post_type在这种情况下为store,这意味着我将命名我的文件single-store.php

分类

在后端的在线商店的“类别”页面上,该网址为edit-tags.php?taxonomy=store_categories&post_type=store

因此分类法文件为taxonomy-store_categories.php

enter image description here

答案 1 :(得分:0)

在分类中 - {category} .php此类别是指我们的自定义类别名称还是其他?

taxonomy-{category}.php here category means your custom category(taxonomy)

在单{post} .php这里的帖子是指自定义帖子名称还是其他?

single-{post}.php here post means custom post type name