forked from ThematicTheme/Thematic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchives.php
More file actions
26 lines (22 loc) · 806 Bytes
/
archives.php
File metadata and controls
26 lines (22 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* Template Name: Deprecated Archives Template
*
* This tamplate has bben deprecated for proper template namespacing
* This file is going away.
*
* If you wish to use Thematic's Archives page template, please set
* your Page Attributes: Template to use the template named "Archives"
* on the WP-Admin Edit Page screen.
*
* @package Thematic
* @subpackage Templates
*
* @link http://codex.wordpress.org/Template_Hierarchy Codex: Template Hierarchy
* @deprecated 1.0
*/
// Providing deprecated file notice to be seen when WP_DEBUG is true
_deprecated_file( sprintf( __( 'The template %s', 'thematic' ) . ':', basename(__FILE__) ), '1.0', 'template-page-archives.php' );
// calling the header.php
get_template_part( 'template-page' , 'archives' );
?>