-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy paththemeforest-check.php
executable file
·35 lines (32 loc) · 1.04 KB
/
themeforest-check.php
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
34
35
<?php
/**
* ThemeForest-Check
*
* A supplement to the Theme-Check plugin that adds checks for ThemeForest's
* WordPress Theme Submission Requirements, and removes checks that aren't
* required.
*
* @package ThemeForest_Check
* @author Japh <[email protected]>
* @license GPL-2.0+
* @link http://themeforest.net
* @copyright 2013 Japh
*
* @wordpress-plugin
* Plugin Name: ThemeForest-Check
* Plugin URI: http://themeforest.net
* Description: A supplement to the Theme-Check plugin that adds checks for ThemeForest's WordPress Theme Submission Requirements, and removes checks that aren't required.
* Version: 1.0.4
* Author: Japh
* Author URI: http://themeforest.net/user/Japh
* Text Domain: themeforest-check-locale
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /lang
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
require_once( plugin_dir_path( __FILE__ ) . 'class-themeforest-check.php' );
ThemeForest_Check::get_instance();