外贸营销
WordPress文章、页面、自定义文章类型内容页模版继承规则和自定义方法
文章、页面、自定义文章类型内容页模版
文章、页面、文章类型内容页,本质上都是文章页面,按文章页面的调用规则类似,都遵循从具体到通用的规则。下面列表中是文章页面的调用规则,优先级从上到下递减。
模版名称中 {}
包含的部分是对应的文章数据:
- {post-type} 是文章类型名,如:single-product.php
- {slug} 是文章别名,如:single-hello.php
- {id} 是文章 ID,如 single-1.php
文章模版、自定义文章类型内容页模版调用优先级规则
- single-{post-type}-{slug}.php.php
- single-{post-type}.php
- single-{slug}.php
- single.php
- singular.php
页面模版优先级规则
- page–{slug}.php
- page-{id}.php
- page.php
- single.php
- singular.php
- index.php
标签