-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcpt-archives.php
More file actions
32 lines (31 loc) · 930 Bytes
/
cpt-archives.php
File metadata and controls
32 lines (31 loc) · 930 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
27
28
29
30
31
32
<?php
/**
* CPT Archives
*
* @package CPTArchives
* @author Brady Vercher
* @link https://github.com/cedaro/cpt-archives
* @copyright Copyright (c) 2015 Cedaro, LLC
* @license GPL-2.0+
*
* @wordpress-plugin
* Plugin Name: CPT Archives
* Plugin URI: https://github.com/cedaro/cpt-archives
* Description: Manage post type archive titles, descriptions, and permalinks from the dashboard.
* Version: 3.0.2
* Author: Cedaro
* Author URI: http://www.cedaro.com/
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: cpt-archives
* Domain Path: /languages
* GitHub Plugin URI: cedaro/cpt-archives
*/
/**
* Load the plugin or display a notice about requirements.
*/
if ( version_compare( phpversion(), '5.4', '>=' ) ) {
require( 'plugin.php' );
} else {
require( 'compatibility.php' );
}