-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsample-data.php
More file actions
22 lines (20 loc) · 858 Bytes
/
sample-data.php
File metadata and controls
22 lines (20 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* Plugin Name: Site Demo Content
* Description: One click import dummy content for your website. Dummy content includes posts, pages, comments etc. Also, Import demo content for different plugins such as WooCommerce, bbPress etc.
* Plugin URI: https://profiles.wordpress.org/mahesh901122/
* Author: Mahesh M. Waghmare
* Author URI: https://maheshwaghmare.com/
* Version: 1.1.2
* License: GNU General Public License v2.0
* Text Domain: sample-data
*
* @package Sample Data
*/
// Set constants.
define( 'SAMPLE_DATA_VER', '1.1.2' );
define( 'SAMPLE_DATA_FILE', __FILE__ );
define( 'SAMPLE_DATA_BASE', plugin_basename( SAMPLE_DATA_FILE ) );
define( 'SAMPLE_DATA_DIR', plugin_dir_path( SAMPLE_DATA_FILE ) );
define( 'SAMPLE_DATA_URI', plugins_url( '/', SAMPLE_DATA_FILE ) );
require_once SAMPLE_DATA_DIR . 'classes/class-sample-data.php';