Text with title shortcode conversion from old theme

Posted in: Newspaper
Post count: 85

In the old version of Newspaper, a text with title block used the shortcode “td_text_with_title.” For some reason, the update script didn’t seem to convert this shortcode to “td_block_text_with_title” for the new version.

I have a handful of posts (not pages) that have this old shortcode. Is there some SQL I can run on my database from PHPMyAdmin to convert the old shortcode to the new shortode?

Thanks as always for your support.

Post count: 85

I was able to find some SQL using Google that did the trick!

For reference:

UPDATE wp_posts SET post_content = REPLACE( post_content, 'td_text_with_title', 'td_block_text_with_title' )

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.