apply_filters( 'twentytwentytwo_block_patterns', array $block_patterns )
- Since
- Twenty Twenty-Two 1.0
Filters the theme block patterns.
Compatibility
- WordPress
- since Twenty Twenty-Two 1.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$block_patternsarray- List of block patterns by name.
Where this hook fires · 1
wp-content/themes/twentytwentytwo/inc/block-patterns.php:126twentytwentytwo_register_block_patterns()
Source code
* Filters the theme block patterns. * * @since Twenty Twenty-Two 1.0 * * @param array $block_patterns List of block patterns by name. */ $block_patterns = apply_filters( 'twentytwentytwo_block_patterns', $block_patterns ); foreach ( $block_patterns as $block_pattern ) { $pattern_file = get_theme_file_path( '/inc/patterns/' . $block_pattern . '.php' ); register_block_pattern( 'twentytwentytwo/' . $block_pattern,Changelog
Introduced in Twenty Twenty-Two 1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.