File: /www/wwwroot/www.018111.cn/wp-content/themes/jian/inc/plugins/wp-clean-up/wp-clean-up.php
<?php
/*
Plugin Name: WP Clean Up
Plugin URI: http://boliquan.com/wp-clean-up/
Description: WP Clean Up can help us to clean up the wordpress database by removing "revision" "draft" "auto draft" "moderated comments" "spam comments" "trash comments" "orphan postmeta" "orphan commentmeta" "orphan relationships" "dashboard transient feed". It allows you to optimize your WordPress database without phpMyAdmin.
Version: 1.2.3
Author: BoLiQuan
Author URI: http://boliquan.com/
Text Domain: WP-Clean-Up
Domain Path: /lang
*/
function load_wp_clean_up_lang()
{
$currentLocale = get_locale();
if (!empty($currentLocale)) {
$moFile = dirname(__FILE__) . "/lang/wp-clean-up-" . $currentLocale . ".mo";
if (@file_exists($moFile) && is_readable($moFile)) {
load_textdomain('WP-Clean-Up', $moFile);
}
}
}
add_filter('init', 'load_wp_clean_up_lang');
if (is_admin()) {
require_once 'wp_clean_up_admin.php';
}