wppaste
WordPress

apply_filters( 'twentytwentytwo_block_pattern_categories', array[] $block_pattern_categories )

Since
Twenty Twenty-Two 1.0
Filters the theme block pattern categories.

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_pattern_categoriesarray[]
{ An associative array of block pattern categories, keyed by category name.
@type array[] $properties { An array of block category properties.
@type string $label A human-readable label for the pattern category.
} }
  • $propertiesarray[]

    An array of block category properties.
    • $labelstring

      A human-readable label for the pattern category.

Where this hook fires · 1

  • wp-content/themes/twentytwentytwo/inc/block-patterns.php:41twentytwentytwo_register_block_patterns()

Source code

	 *         An array of block category properties.	 *	 *         @type string $label A human-readable label for the pattern category.	 *     }	 * }	 */	$block_pattern_categories = apply_filters( 'twentytwentytwo_block_pattern_categories', $block_pattern_categories ); 	foreach ( $block_pattern_categories as $name => $properties ) {		if ( ! WP_Block_Pattern_Categories_Registry::get_instance()->is_registered( $name ) ) {			register_block_pattern_category( $name, $properties );		}	}

Changelog

Introduced in Twenty Twenty-Two 1.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 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.