wpseek.com
WordPress开发者和主题制作者的搜索引擎



_add_block_template_info › WordPress Function

Since5.9.0
已弃用n/a
_add_block_template_info ( $template_item )
访问:
  • private
参数:
  • (array) $template_item Template to add information to (requires 'slug' field).
    Required: Yes
返回:
  • (array) Template item.
定义在:
文档:

Attempts to add custom template information to the template item.



源码

function _add_block_template_info( $template_item ) {
	if ( ! wp_theme_has_theme_json() ) {
		return $template_item;
	}

	$theme_data = wp_get_theme_data_custom_templates();
	if ( isset( $theme_data[ $template_item['slug'] ] ) ) {
		$template_item['title']     = $theme_data[ $template_item['slug'] ]['title'];
		$template_item['postTypes'] = $theme_data[ $template_item['slug'] ]['postTypes'];
	}

	return $template_item;
}