编辑屏幕中没有针对独立标准帖子的内置模板分配。但您可以为单个帖子分配模板。有几种选择:
Use WordPress template hierarchy system
在主题的根文件夹下,可以创建以下文件:
单人。php用于任何类型的所有单个帖子单立柱。php,如果该文件存在,它将用于标准帖子,而不是单个帖子。php
单-{post type}。php,如果此文件存在,它将仅用于{post-type}
发布而不是单个。phpUse template_include
filter
使用
template_include
筛选您可以使用任何模板文件来处理满足您要求的单篇帖子。例如,使用模板
template-for-my-post.php
对于ID为124的帖子:
add_filter( \'template_include\', \'cyb_post_template\');
function cyb_post_template( $template ) {
if ( is_single( 124 ) ) {
$new_template = locate_template( array( \'template-for-my-post.php\' ) );
if ( \'\' != $new_template ) {
return $new_template ;
}
}
return $template;
}