在Wordpress帖子中更新文件上传域
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Wordpress帖子中更新文件上传域相关的知识,希望对你有一定的参考价值。
This is a simple SQL statement which will update all the posts within a Wordpress installation changing the domain which files were uploaded to.Very handy if migrating a site from a test to live environment and all embedded images are referenced using the test url.
UPDATE wp_posts SET post_content = REPLACE(post_content, 'http://www.TESTDOMAIN.com', 'http://www.LIVEDOMAIN.com')
以上是关于在Wordpress帖子中更新文件上传域的主要内容,如果未能解决你的问题,请参考以下文章