「「Google Maps Anywhere」から「Simple Map」へ移行」への1件のフィードバック 丁度移行する必要がある機会があったので、参考とさせていただきました。 functions.phpへフィルタを追記すればDBの変更なしでも変換できそうではあります(未検証ですが) function googlemap_to_map($text) { if ( preg_match("/\[googlemap/",$text) ){ $text = preg_replace("/\[googlemap/", '[map', $text); $text = preg_replace("/\[\/googlemap\]/", '[/map]', $text); } return $text; } add_filter('the_content', 'googlemap_to_map', 1)