updated plugin GP Premium version 1.11.2

This commit is contained in:
2020-08-13 14:53:39 +00:00
committed by Gitium
parent 3f0f8d3ac9
commit 885bbdd113
151 changed files with 11329 additions and 6954 deletions

View File

@ -1,27 +1,21 @@
<?php
/*
Addon Name: Generate Page Header
Author: Thomas Usborne
Author URI: http://edge22.com
*/
/**
* The Page Header module.
*
* @since 1.1.0
* @deprecated 1.7.0
*
* @package GP Premium
*/
// No direct access, please
if ( ! defined( 'ABSPATH' ) ) {
exit;
exit; // No direct access, please.
}
// Define the version
// Define the version.
if ( ! defined( 'GENERATE_PAGE_HEADER_VERSION' ) ) {
define( 'GENERATE_PAGE_HEADER_VERSION', GP_PREMIUM_VERSION );
}
if ( ! function_exists( 'generate_page_header_init' ) ) {
add_action( 'plugins_loaded', 'generate_page_header_init' );
function generate_page_header_init() {
load_plugin_textdomain( 'page-header', false, 'gp-premium/langs/page-header/' );
}
}
// Include assets unique to this addon
// Include assets unique to this addon.
require plugin_dir_path( __FILE__ ) . 'functions/functions.php';