PluginProbe
Wp-Insert / 2.6.0
Wp-Insert v2.6.0
trunk 1.0 1.1 1.2 1.2.1 1.2.2 1.3.0 1.3.1 1.3.3 1.4 1.5.0 1.5.1 1.5.2 1.5.3 1.6.0 1.6.1 1.6.2 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 2.0 All 63 releases
wp-insert / wp-insert.php

wp-insert.php in Wp-Insert 2.6.0, at wp-insert.php

35 lines 987 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Wp-Insert
4 * Plugin URI: https://wpinsert.smartlogix.co.in/
5 * Description: WP-INSERT by SMARTLOGIX : The Ultimate Adsense / Ad-Management Plugin for WordPress
6 * Requires at least: 6.3
7 * Requires PHP: 7.4
8 * Version: 2.6.0
9 * Author: namithjawahar
10 * Author URI: http://www.smartlogix.co.in/
11 * License: GPLv2 or later
12 * License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
13 * Text Domain: wp-insert
14 *
15 * @package wp-insert
16 */
17
18 /*Definitions*/
19 if ( ! defined( 'WP_INSERT_URL' ) ) {
20 define( 'WP_INSERT_URL', plugin_dir_url( __FILE__ ) );
21 }
22 if ( ! defined( 'WP_INSERT_DIR' ) ) {
23 define( 'WP_INSERT_DIR', plugin_dir_path( __FILE__ ) );
24 }
25 if ( ! defined( 'WP_INSERT_VERSION' ) ) {
26 define( 'WP_INSERT_VERSION', '2.6.0' );
27 }
28 if ( ! defined( 'WP_INSERT_DEBUG' ) ) {
29 define( 'WP_INSERT_DEBUG', false );
30 }
31 /*Includes*/
32
33 require_once __DIR__ . '/includes/modules/core/modules.php';
34 require_once __DIR__ . '/includes/modules/general/modules.php';
35