Created
September 12, 2013 08:16
-
-
Save wokamoto/6534349 to your computer and use it in GitHub Desktop.
[WordPress] Google Maps Anywhere から Simple Map プラグインに移行する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update wp_posts | |
set post_content = replace(post_content, '[googlemap', '[map') | |
where post_content like '%[googlemap%'; | |
update wp_posts | |
set post_content = replace(post_content, '[/googlemap]', '[/map]') | |
where post_content like '%[/googlemap]%'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment