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