PluginProbe
WDesignKit – AI Templates, Widget Builder & MCP Workflow for WordPress / 1.0.13
WDesignKit – AI Templates, Widget Builder & MCP Workflow for WordPress v1.0.13
2.6.5 2.6.4 2.6.3 2.6.2 2.6.1 2.6.0 2.5.5 2.5.4 2.5.3 2.5.2 2.5.1 2.5.0 2.4.0 2.3.3 2.3.2 2.3.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 All 127 releases
wdesignkit / wdesignkit.php

wdesignkit.php in WDesignKit – AI Templates, Widget Builder & MCP Workflow for WordPress 1.0.13, at wdesignkit.php

40 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: WDesignkit
4 * Plugin URI: https://wdesignkit.com/
5 * Description: Build WordPress websites in no time using wdesignkit's collection of website templates & Widgets, Widget Builder for Elementor, Block Builder for Gutenberg and many more feature to improve your web design process.
6 * Version: 1.0.13
7 * Author: POSIMYTH
8 * Author URI: https://posimyth.com/
9 * Text Domain: wdesignkit
10 * Domain Path: /languages
11 * License: GPLv2
12 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
13 *
14 * @package wdesignkit
15 */
16
17 /** If this file is called directly, abort. */
18 if ( ! defined( 'ABSPATH' ) ) {
19 exit;
20 }
21
22 define( 'WDKIT_VERSION', '1.0.13' );
23 define( 'WDKIT_FILE', __FILE__ );
24 define( 'WDKIT_PATH', plugin_dir_path( __FILE__ ) );
25 define( 'WDKIT_PBNAME', plugin_basename( __FILE__ ) );
26 define( 'WDKIT_BDNAME', basename( dirname( __FILE__ )) );
27 define( 'WDKIT_URL', plugins_url( '/', __FILE__ ) );
28 define( 'WDKIT_HOSTURL', site_url() );
29 define( 'WDKIT_INCLUDES', WDKIT_PATH . '/includes/' );
30 define( 'WDKIT_ASSETS', WDKIT_URL . 'assets/' );
31 define( 'WDKIT_TEXT_DOMAIN', 'wdesignkit' );
32 define( 'WDKIT_SERVER_SITE_URL', 'https://wdesignkit.com/' );
33
34 /** Widget Builder path*/
35 define( 'WDKIT_SERVER_PATH', wp_upload_dir()['baseurl'] . DIRECTORY_SEPARATOR . '/wdesignkit' );
36 define( 'WDKIT_BUILDER_PATH', wp_upload_dir()['basedir'] . DIRECTORY_SEPARATOR . '/wdesignkit' );
37 define( 'WDKIT_GET_SITE_URL', get_site_url() );
38
39 require WDKIT_PATH . 'includes/class-wdkit-wdesignkit.php';
40