I'm trying to replace the following string in my Wordpress database:
[wpai_google_translate_text({./@name},{description[1]/short[1]},"en")]
I tried the 'https://wordpress.org/plugins/search-and-replace/' plugin but it wasn't able to handle the above string.
I also tried some of the other solutions on Google such as the following command in phpmyadmin:
SELECT * FROM wp_posts WHERE (post_content LIKE '%TEXT-TO-FIND-GOES-HERE%');
But that just searches from post contents.
The text I'm trying to replace doesn't reside in a post or page or any sort of user generated content.
So my question is, how can I search across my entire database and for that string and replace it with something else?
Thanks