wenpai.org/wp-content/plugins/plat-gp-customizations/plat-gp-customizations.php
2024-06-21 23:57:39 +08:00

26 lines
770 B
PHP

<?php
/**
* Plugin name: GlotPress 定制
* Description: Provides general customizations for translate.wenpai.org.
* Version: 2.0
* Author: 树新蜂
* Author URI: http://wordpress.org/
* License: GPLv2 or later
*/
namespace WordPressdotorg\GlotPress\Customizations;
use WordPressdotorg\Autoload;
// Store the root plugin file for usage with functions which use the plugin basename.
define( __NAMESPACE__ . '\PLUGIN_FILE', __FILE__ );
if ( ! class_exists( '\WordPressdotorg\Autoload\Autoloader', false ) ) {
include __DIR__ . '/vendor/wordpressdotorg/autoload/class-autoloader.php';
}
// Register an Autoloader for all files.
Autoload\register_class_path( __NAMESPACE__, __DIR__ . '/inc' );
// Instantiate the Plugin.
Plugin::get_instance();