本文整理匯總了PHP中Theme_Upgrader::delete_old_theme方法的典型用法代碼示例。如果您正苦於以下問題:PHP Theme_Upgrader::delete_old_theme方法的具體用法?PHP Theme_Upgrader::delete_old_theme怎麽用?PHP Theme_Upgrader::delete_old_theme使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Theme_Upgrader
的用法示例。
在下文中一共展示了Theme_Upgrader::delete_old_theme方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: explode
function theme_action()
{
//Read form data
$action = $_POST['action'];
$theme = $_POST['theme'];
if ('activate' === $action) {
include_once ABSPATH . '/wp-admin/includes/theme.php';
$theTheme = get_theme($theme);
if (null !== $theTheme && '' !== $theTheme) {
switch_theme($theTheme['Template'], $theTheme['Stylesheet']);
}
} else {
if ('delete' === $action) {
include_once ABSPATH . '/wp-admin/includes/theme.php';
// if (file_exists(ABSPATH . '/wp-admin/includes/deprecated.php')) include_once(ABSPATH . '/wp-admin/includes/deprecated.php');
if (file_exists(ABSPATH . '/wp-admin/includes/screen.php')) {
include_once ABSPATH . '/wp-admin/includes/screen.php';
}
include_once ABSPATH . '/wp-admin/includes/file.php';
include_once ABSPATH . '/wp-admin/includes/template.php';
include_once ABSPATH . '/wp-admin/includes/misc.php';
include_once ABSPATH . '/wp-admin/includes/class-wp-upgrader.php';
include_once ABSPATH . '/wp-admin/includes/class-wp-filesystem-base.php';
include_once ABSPATH . '/wp-admin/includes/class-wp-filesystem-direct.php';
$wp_filesystem = $this->getWPFilesystem();
if (empty($wp_filesystem)) {
$wp_filesystem = new WP_Filesystem_Direct(null);
}
$themeUpgrader = new Theme_Upgrader();
$theme_name = wp_get_theme()->get('Name');
$themes = explode('||', $theme);
foreach ($themes as $idx => $themeToDelete) {
if ($themeToDelete !== $theme_name) {
$theTheme = get_theme($themeToDelete);
if (null !== $theTheme && '' !== $theTheme) {
$tmp['theme'] = $theTheme['Template'];
if (true === $themeUpgrader->delete_old_theme(null, null, null, $tmp)) {
$args = array('action' => 'delete', 'Name' => $theTheme['Name']);
do_action('mainwp_child_theme_action', $args);
}
}
}
}
} else {
$information['status'] = 'FAIL';
}
}
if (!isset($information['status'])) {
$information['status'] = 'SUCCESS';
}
$information['sync'] = $this->getSiteStats(array(), false);
MainWP_Helper::write($information);
}