Conditions | 3 |
Paths | 3 |
Total Lines | 6 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
63 | public function underscore_templates() { |
||
64 | foreach ( $this->templates as $template ) { |
||
65 | if ( file_exists( $this->views_path . $template . '.php' ) ) { |
||
66 | echo '<script type="text/html" id="tmpl-kirki-input-' . esc_attr( $template ) . '">'; |
||
67 | include $this->views_path . $template . '.php'; |
||
68 | echo '</script>'; |
||
69 | } |
||
73 |