If you want to change the single page
page-{page-slug}
如果您希望页面模板仅用于特定页面,而不用于多个页面,那么这是一个很好的选择。
查看他的custom page template for specific page
If you are talking about custom post type
我们可以使用
single-$posttype.php
, 在这里
$posttype
是您的自定义post类型slug。
单篇文章页面自定义文章的WordPress模板层次结构按以下顺序排列:
single-$posttype.php ==> single.php ==> singular.php(WP 4.3+)
因此,如果请求自定义贴子单页,WP首先查找
single-$posttype
文件如果可用,则使用该文件,否则将转到
single.php
按上述顺序依次类推。
提到Template Hierarchy 了解更多详细信息。