几年前我创建了一个自定义主题,我想激活站点编辑器图标并使用模板编辑器。我添加了这个:
function mon_theme_support_editor_de_site() {
add_theme_support( 'wp-block-styles' );
add_theme_support( 'block-templates' );
add_theme_support( 'responsive-embeds' );
add_theme_support( 'align-wide' );
}
add_action( 'after_setup_theme', 'mon_theme_support_editor_de_site' );
在我的functions.php中,但我的Wordpress后台什么也没有出现。
我必须改变或做什么?
在主题文件夹的根目录中添加一个名为
templates
的文件夹,并在该文件夹中添加一个名为 index.html
的文件。这会将侧面导航中的按钮从“定制器”更改为“编辑器”。
您可以看看主题 TwentyTwentyFour,它在编辑器中还包含多个不同的模板部分。