WordPress / twentytwentytwo

Twenty Twenty-Two, the default WordPress theme that will launch with WordPress 5.9.
404 stars 92 forks source link

blockTypes / Pattern Question #287

Closed bgardner closed 2 years ago

bgardner commented 2 years ago

Description Just a general question to help inform our efforts. What is the significance of code like below, as found in each pattern file:

'blockTypes' => array( 'core/template-part/header' ),
kjellr commented 2 years ago

This property was introduced in 5.8: https://make.wordpress.org/core/2021/07/12/miscellaneous-block-editor-api-additions-in-wordpress-5-8/

It tells the editor to associate the pattern with the block type specified, for use in pattern transforms, or in the pattern carousel here:

Screen Shot 2021-12-09 at 9 29 52 AM
bgardner commented 2 years ago

Ah, gotcha. Thanks @kjellr.