我看不出主题为什么会做这样的事情。为什么主题会减少功能。
要再次检查,请确保page attributes
在screen options
已选中。
除此之外,您始终可以使用代码设置页面模板。
_wp_page_template
是存储页面模板的元键。
您可以使用更新页面模板update_post_meta
喜欢
$post_id = \'the id of the post/page\';
$template = \'name of the template\';
update_post_meta( $post_id, \'_wp_page_template\', $template );