wp_enable_block_templates

函式
wp_enable_block_templates ( No parameters )

wp_enable_block_templates: 這個函式用來在WordPress的塊編輯器中啟用塊模板的使用。塊模板是預先定義的塊集,可以用來快速建立一個特定的佈局或設計: 這個函式可以在外掛或主題中使用,使使用者能夠使用塊模板。

預設情況下,為帶有theme.json的主題啟用區塊模板(編輯器模式)。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function wp_enable_block_templates() {
if ( wp_is_block_theme() || WP_Theme_JSON_Resolver::theme_has_support() ) {
add_theme_support( 'block-templates' );
}
}
function wp_enable_block_templates() { if ( wp_is_block_theme() || WP_Theme_JSON_Resolver::theme_has_support() ) { add_theme_support( 'block-templates' ); } }
function wp_enable_block_templates() {
	if ( wp_is_block_theme() || WP_Theme_JSON_Resolver::theme_has_support() ) {
		add_theme_support( 'block-templates' );
	}
}

常見問題

FAQs
檢視更多 >