Parsed: 128115
<?php /** * Register the block patterns and block patterns categories * * @package WordPress * @since 5.5.0 */ add_theme_support( 'core-block-patterns' ); /* function _register_core_block_patterns_and_categories() – Registers the core block patterns and categories. */ /* function wp_normalize_remote_block_pattern */ /* function _load_remote_block_patterns() – Register Core’s official patterns from wordpress.org/patterns. */ /* function _load_remote_featured_patterns() – Register `Featured` (category) patterns from wordpress.org/patterns. */ /* function _register_remote_theme_patterns() – Registers patterns from Pattern Directory provided by a theme’s `theme.json` file. */ /* function _register_theme_block_patterns() – Register any patterns that the active theme may provide under its `./patterns/` directory. Each pattern is defined as a PHP file and defines its metadata using plugin-style headers. The minimum required definition is: */ add_action( 'init', '_register_theme_block_patterns' );