如果你更换了wordpress站点的域名后,需要更新文章中图片的域名地址。可通过如下方式进行:
在主题的function.php文件中增加以下代码:
function replace_text_wps($text) {
$replace = array(
‘http://旧域名.com’ => ‘http://新域名.com’,
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter(‘the_content’, ‘replace_text_wps’);
add_filter(‘the_excerpt’, ‘replace_text_wps’);