Automattic\WooCommerce\Admin\Features\ProductBlockEditor
BlockTemplateUtils::get_template_content
Get the template content from the file.
Метод класса: BlockTemplateUtils{}
Хуков нет.
Возвращает
Строку. Content.
Использование
$result = BlockTemplateUtils::get_template_content( $file_path );
- $file_path(строка) (обязательный)
- - File path.
Код BlockTemplateUtils::get_template_content() BlockTemplateUtils::get template content 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;
}