Automattic\WooCommerce\Admin\Features\ProductBlockEditor
BlockTemplateUtils::get_template_content
Get the template content from the file.
Method of the class: BlockTemplateUtils{}
No Hooks.
Returns
String. Content.
Usage
$result = BlockTemplateUtils::get_template_content( $file_path );
- $file_path(string) (required)
- - File path.
BlockTemplateUtils::get_template_content() BlockTemplateUtils::get template content code WC 10.6.2
public static function get_template_content( $file_path ) {
if ( ! file_exists( $file_path ) ) {
return '';
}
ob_start();
include $file_path;
$content = ob_get_contents();
ob_end_clean();
return $content;
}