# This patch file was generated by NetBeans IDE
# Following Index: paths are relative to: C:\Users\win\Documents\Programming\WP\trunk\wp-includes
# This patch can be applied using context Tools: Patch action on respective folder.
# It uses platform neutral UTF-8 encoding and \n newlines.
# Above lines and this line are ignored by the patching process.
|
|
|
161 | 161 | */ |
162 | 162 | do_action( "get_template_part_{$slug}", $slug, $name ); |
163 | 163 | |
| 164 | $import_dirs = array(); |
| 165 | $import_dirs = apply_filters('template_part_import_directories', $import_dirs); |
| 166 | $import_dirs[] = ""; |
| 167 | |
164 | 168 | $templates = array(); |
165 | 169 | $name = (string) $name; |
166 | | if ( '' !== $name ) |
167 | | $templates[] = "{$slug}-{$name}.php"; |
| 170 | if ( '' !== $name ){ |
| 171 | for( $i = 0; $i < count($import_dirs); $i++ ){ |
| 172 | $templates[] = "{$import_dirs[$i]}/{$slug}-{$name}.php"; |
| 173 | $templates[] = "{$import_dirs[$i]}/{$slug}.php"; |
| 174 | } |
| 175 | } else { |
| 176 | for( $i = 0; $i < count($import_dirs); $i++ ){ |
| 177 | $templates[] = "{$import_dirs[$i]}/{$slug}.php"; |
| 178 | } |
| 179 | } |
168 | 180 | |
169 | | $templates[] = "{$slug}.php"; |
170 | 181 | |
171 | 182 | locate_template($templates, true, false); |
172 | 183 | } |