-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugdigital.php
More file actions
36 lines (29 loc) · 1.16 KB
/
plugdigital.php
File metadata and controls
36 lines (29 loc) · 1.16 KB
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
36
<?php
/**
* Plugin Name: PlugDigital
* Description: Optimización y componentes de PlugDigital.com
* Plugin URI: https://www.plugdigital.com
* Author: Manuel Padilla
* Author URI: https://www.plugdigital.com/manuel-padilla
* Version: 1.0
* License: GPL2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: PlugDigital
* Domain Path: /languages/
*/
/*
PlugDigital is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
any later version.
PlugDigital is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PlugDigital. If not, see {URI to Plugin License}.
*/
defined( 'ABSPATH' ) or exit;
define( 'PLUGDIGITAL__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
require_once( PLUGDIGITAL__PLUGIN_DIR . 'class.plugdigital.php' );
add_action( 'init', array( 'pdmx', 'init' ) );