31 lines
979 B
PHP
31 lines
979 B
PHP
<?php
|
|
/**
|
|
* Plugin Name: Hello (by ROBOTSTXT)
|
|
* Plugin URI: https://www.robotstxt.software/plugins/robotstxt-hello/
|
|
* Update URI: https://www.robotstxt.software/plugins/robotstxt-hello/
|
|
* Description: Adds a Hello admin page for demonstration purposes.
|
|
* Version: 1.2.5
|
|
* Requires at least: 4.0
|
|
* Requires PHP: 5.6
|
|
* Network: true
|
|
* Security: robotstxt@robotstxt.es
|
|
* Author: ROBOTSTXT
|
|
* Author URI: https://www.robotstxt.software/
|
|
* Text Domain: robotstxt-hello
|
|
* Domain Path: /languages
|
|
* License: GPL-3.0-or-later
|
|
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
|
*
|
|
* @package ROBOTSTXT_Hello
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
define( 'ROBOTSTXT_HELLO_VERSION', '1.2.5' );
|
|
define( 'ROBOTSTXT_HELLO_FILE', __FILE__ );
|
|
|
|
require_once __DIR__ . '/includes/class-robotstxt-hello-plugin.php';
|
|
|
|
( new Robotstxt_Hello_Plugin() )->register();
|