Oke, the one mentioned reusable text blocks isn’t really updated too and gave me big problems with NG Gallery.
now i use
Loomisoft Content Blocks
this works PERFECT.
and these mysql queries do the trick to convert all your posts at once
UPDATE wp_posts SET post_content = replace(post_content, ‘[contentblock id=staytuned]’, ‘[ls_content_block slug=staytuned]’);
and with 1 variable string assuming the string is at the end. LS content needs “var” to start i leave out the value of the string in this case simple.
as it seems this new plugin the var needs to start with var. as i had before “place” must be now “varplace” so it looks a bit different.
if you have more as 1 variable…..no clue you need some more regex I guess.
UPDATE wp_posts SET post_content = replace(post_content, ‘[contentblock id=comment place=’, ‘[ls_content_block slug=comment varplace=’);
USE AT OWN RISK THESE MYSQL QUERIES AND BACK UP FIRST!