[ Index ] |
PHP Cross Reference of WordPress |
[Source view] [Print] [Project Stats]
Utilities used to fetch and create templates and template parts.
File Size: | 1024 lines (33 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
get_block_theme_folders( $theme_stylesheet = null ) X-Ref |
For backward compatibility reasons, block themes might be using block-templates or block-template-parts, this function ensures we fallback to these folders properly. since: 5.9.0 param: string $theme_stylesheet The stylesheet. Default is to leverage the main theme root. return: string[] { |
get_allowed_block_template_part_areas() X-Ref |
Returns a filtered list of allowed area values for template parts. since: 5.9.0 return: array The supported template part area values. |
get_default_block_template_types() X-Ref |
Returns a filtered list of default template types, containing their localized titles and descriptions. since: 5.9.0 return: array The default template types. |
_filter_block_template_part_area( $type ) X-Ref |
Checks whether the input 'area' is a supported value. Returns the input if supported, otherwise returns the 'uncategorized' value. since: 5.9.0 param: string $type Template part area name. return: string Input if supported, else the uncategorized value. |
_get_block_templates_paths( $base_directory ) X-Ref |
No description |
_get_block_template_file( $template_type, $slug ) X-Ref |
Retrieves the template file from the theme for a given slug. since: 5.9.0 param: string $template_type 'wp_template' or 'wp_template_part'. param: string $slug Template slug. return: array|null Template. |
_get_block_templates_files( $template_type ) X-Ref |
Retrieves the template files from the theme. since: 5.9.0 param: string $template_type 'wp_template' or 'wp_template_part'. return: array Template. |
_add_block_template_info( $template_item ) X-Ref |
Attempts to add custom template information to the template item. since: 5.9.0 param: array $template_item Template to add information to (requires 'slug' field). return: array Template item. |
_add_block_template_part_area_info( $template_info ) X-Ref |
Attempts to add the template part's area information to the input template. since: 5.9.0 param: array $template_info Template to add information to (requires 'type' and 'slug' fields). return: array Template info. |
_flatten_blocks( &$blocks ) X-Ref |
Returns an array containing the references of the passed blocks and their inner blocks. since: 5.9.0 param: array $blocks array of blocks. return: array block references to the passed blocks and their inner blocks. |
_inject_theme_attribute_in_block_template_content( $template_content ) X-Ref |
Parses wp_template content and injects the active theme's stylesheet as a theme attribute into each wp_template_part since: 5.9.0 param: string $template_content serialized wp_template content. return: string Updated 'wp_template' content. |
_remove_theme_attribute_in_block_template_content( $template_content ) X-Ref |
Parses a block template and removes the theme attribute from each template part. since: 5.9.0 param: string $template_content Serialized block template content. return: string Updated block template content. |
_build_block_template_result_from_file( $template_file, $template_type ) X-Ref |
Build a unified template object based on a theme file. since: 5.9.0 param: array $template_file Theme file. param: string $template_type 'wp_template' or 'wp_template_part'. return: WP_Block_Template Template. |
_build_block_template_result_from_post( $post ) X-Ref |
Build a unified template object based a post Object. since: 5.9.0 param: WP_Post $post Template post. return: WP_Block_Template|WP_Error Template. |
get_block_templates( $query = array() X-Ref |
Retrieves a list of unified template objects based on a query. since: 5.8.0 param: array $query { param: string $template_type 'wp_template' or 'wp_template_part'. return: array Templates. |
get_block_template( $id, $template_type = 'wp_template' ) X-Ref |
Retrieves a single unified template object using its id. since: 5.8.0 param: string $id Template unique identifier (example: theme_slug//template_slug). param: string $template_type Optional. Template type: `'wp_template'` or '`wp_template_part'`. return: WP_Block_Template|null Template. |
get_block_file_template( $id, $template_type = 'wp_template' ) X-Ref |
Retrieves a single unified template object using its id. since: 5.9.0 param: string $id Template unique identifier (example: theme_slug//template_slug). param: string $template_type Optional. Template type: `'wp_template'` or '`wp_template_part'`. return: WP_Block_Template|null The found block template, or null if there isn't one. |
block_template_part( $part ) X-Ref |
Print a template-part. since: 5.9.0 param: string $part The template-part to print. Use "header" or "footer". |
block_header_area() X-Ref |
Print the header template-part. since: 5.9.0 |
block_footer_area() X-Ref |
Print the footer template-part. since: 5.9.0 |
wp_is_theme_directory_ignored( $path ) X-Ref |
Filters theme directories that should be ignored during export. since: 6.0.0 param: string $path The path of the file in the theme. return: Bool Whether this file is in an ignored directory. |
wp_generate_block_templates_export_file() X-Ref |
Creates an export of the current templates and template parts from the site editor at the specified path in a ZIP file. since: 5.9.0 since: 6.0.0 Adds the whole theme to the export archive. return: WP_Error|string Path of the ZIP file or error on failure. |
Generated: Mon Apr 21 01:00:03 2025 | Cross-referenced by PHPXref 0.7.1 |