PluginProbe
Cornerstone / 0.7.8
Cornerstone v0.7.8
trunk 0.7.7 0.7.8 0.8.0 0.8.1
cornerstone / main.php

main.php in Cornerstone 0.7.8, at main.php

29 lines 683 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Cornerstone
4 *
5 * @package Cornerstone
6 * @author Archetyped <support@archetyped.com>
7 * @copyright 2020 Archetyped
8 *
9 * Plugin Name: Cornerstone
10 * Plugin URI: http://archetyped.com/tools/cornerstone/
11 * Description: Enhanced content management for WordPress
12 * Version: 0.7.8
13 * Requires at least: 5.3
14 * Text Domain: cornerstone
15 * Author: Archetyped
16 * Author URI: http://archetyped.com
17 * Support URI: https://github.com/archetyped/cornerstone/wiki/Reporting-Issues
18 */
19
20 $cnr = null;
21 /**
22 * Initialize CNR
23 */
24 function cnr_init() {
25 $path = dirname(__FILE__) . '/';
26 require_once $path . 'load.php';
27 }
28
29 add_action('init', 'cnr_init', 1);