IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
38 | 38 | |
39 | 39 | $templates[] = 'header.php'; |
40 | 40 | |
| 41 | /** |
| 42 | * Filter the header template name |
| 43 | */ |
| 44 | apply_filters_ref_array( 'get_header_template', $templates ); |
| 45 | |
41 | 46 | locate_template( $templates, true ); |
42 | 47 | } |
43 | 48 | |
… |
… |
|
73 | 78 | |
74 | 79 | $templates[] = 'footer.php'; |
75 | 80 | |
| 81 | /** |
| 82 | * Filter the footer template name |
| 83 | */ |
| 84 | apply_filters_ref_array( 'get_footer_template', $templates ); |
| 85 | |
76 | 86 | locate_template( $templates, true ); |
77 | 87 | } |
78 | 88 | |