-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcpr.php
More file actions
executable file
·29 lines (26 loc) · 846 Bytes
/
Copy pathcpr.php
File metadata and controls
executable file
·29 lines (26 loc) · 846 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
<?php
/**
* @package dynamic-cpr
* @since 1.0
* Plugin Name: Dynamic CPR
* Description: Simple and lightweight plugin for creating and managing custom post types in WordPress.
* Version: 2.2
* Author: Kazi Mohammad Foysal
* Author URI: https://www.github.com/kmfoysal06
* Tags: cpr, custom post type, dynamic
* Requires at least: 4.7
* Tested up to: 6.4.2
* Stable tag: 2.2
* Requires PHP: 7.0
* License: GPLv2
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
if(!defined('ABSPATH')){
exit;
// exit if accessed directly
}
require_once plugin_dir_path(__FILE__)."inc/custom-post.inc.php";
require_once plugin_dir_path(__FILE__)."inc/custom-metaboxes.inc.php";
require_once plugin_dir_path(__FILE__)."inc/register-post-types-custom-metas.inc.php";
require_once plugin_dir_path(__FILE__)."inc/create_post.inc.php";
?>