init.php
547 字节
<?php
require_once( dirname(__FILE__) . '/../wp-load.php' );
global $wpdb;
$target_domain = 'demo.globalso.com'; //此处填写自己的站点域名
$wpdb->query("UPDATE `wp_posts` SET `post_content` = replace( `post_content` , 'devmark.globalso.com', '".$target_domain."')");
$wpdb->query("UPDATE `wp_options` SET `option_value` = replace( `option_value` , 'devmark.globalso.com', '".$target_domain."')");
$wpdb->query("UPDATE `wp_posts` SET `guid` = replace( `guid` , 'devmark.globalso.com', '".$target_domain."')");
echo '部署成功';exit;