Carbon_Fields\Templater\Templater::render_templates PHP Method

render_templates() public method

Render all registered templates.
public render_templates ( )
    public function render_templates()
    {
        foreach (self::$templates as $name => $html) {
            ?>
			<script type="text/html" id="crb-tmpl-<?php 
            echo $name;
            ?>
">
				<?php 
            echo apply_filters('carbon_template', apply_filters('carbon_template_' . $name, $html), $name);
            ?>
			</script>
			<?php 
        }
    }