-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsert-codes.php
More file actions
48 lines (43 loc) · 1.59 KB
/
insert-codes.php
File metadata and controls
48 lines (43 loc) · 1.59 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
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* Plugin Name: Insert Codes - The Code Snippets Manager for WordPress
* Plugin URI: https://urldev.com/plugins/insert-codes/
* Description: The "Insert Codes - The Code Snippets Manager for WordPress" plugin allows you to easily manage custom code snippets and add custom code to the header, body, and footer sections of your WordPress website.
* Version: 1.6.0
* Requires at least: 5.0
* Requires PHP: 7.4
* Author: UrlDev
* Author URI: https://urldev.com
* License: GPL v2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: insert-codes
* Domain Path: /languages
* Tested up to: 6.9
*
* @package InsertCodes
*
* This program 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 3 of the License, or
* (at your option) any later version.
*
* This program 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.
*/
use InsertCodes\Plugin;
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
// Autoload classes.
require_once __DIR__ . '/vendor/autoload.php';
/**
* Get the plugin instance.
*
* @since 1.0.0
* @return Plugin plugin initialize class.
*/
function insertcodes() {
return Plugin::create( __FILE__, '1.6.0' );
}
// Initialize the plugin.
insertcodes();