forked from hlashbrooke/Export-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexport-plus.php
More file actions
33 lines (29 loc) · 749 Bytes
/
export-plus.php
File metadata and controls
33 lines (29 loc) · 749 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
33
<?php
/*
* Plugin Name: Export Plus
* Version: 1.0
* Plugin URI: https://wordpress.org/plugins/export-plus/
* Description: A greatly improved export tool for your WordPress site.
* Author: Hugh Lashbrooke
* Author URI: http://www.hughlashbrooke.com/
* Requires at least: 3.9
* Tested up to: 4.0
*
* @package WordPress
* @author Hugh Lashbrooke
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) exit;
// Load plugin class files
require_once( 'includes/class-export-plus.php' );
/**
* Returns the main instance of Export_Plus to prevent the need to use globals.
*
* @since 1.0.0
* @return object Export_Plus
*/
function Export_Plus () {
$instance = Export_Plus::instance( __FILE__, '1.0.0' );
return $instance;
}
Export_Plus();