由于博客迁移到了自己本地NAS上,导致以前文章中的图片都不显示了,一看地址还是原来的绝对地址,那肯定打不开了,于是找解决办法,记录一下。
解决办法很简单,就是在主题的functions.php函数中加上以下这段代码:
/////这里是处理文章页面的图片用相对地址不用绝对地址避免端口改过以后图片打不开
function make_all_links_and_images_relative($content) {
// 处理a标签中的href属性
$content = preg_replace('/href="http:\/\/[^\/]+\/?/', 'href="', $content);
// 处理img标签中的src属性
$content = preg_replace('/src="http:\/\/[^\/]+\/?/', 'src="', $content);
return $content;
}
add_filter('the_content', 'make_all_links_and_images_relative');

评论