Changeset 45231 for trunk/src/wp-includes/template.php
- Timestamp:
- 04/17/2019 12:57:01 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/template.php
r44966 r45231 58 58 * 59 59 * @param string $template Path to the template. See locate_template(). 60 * @param string $type Filename without extension.60 * @param string $type Sanitized filename without extension. 61 61 * @param array $templates A list of template candidates, in descending order of priority. 62 62 */ … … 374 374 $templates = array( 'front-page.php' ); 375 375 376 return get_query_template( 'front _page', $templates );376 return get_query_template( 'frontpage', $templates ); 377 377 } 378 378 … … 392 392 $templates = array( 'privacy-policy.php' ); 393 393 394 return get_query_template( 'privacy _policy', $templates );394 return get_query_template( 'privacypolicy', $templates ); 395 395 } 396 396
Note: See TracChangeset
for help on using the changeset viewer.