This question already has an answer here:
There are some outdated plugins. But those are not seem to be useful and not actually working.
There are 2000 post titles and I want to bulk edit/replace specific word from them. How can I do this by using mysql command?
Like this : Changing Sloppy
to Ronn
in 2000 wordpress post titles at once. How can I do that?
</div>
try using this plugin: https://wordpress.org/plugins/cm-on-demand-search-and-replace/
otherwise try running this command:
UPDATE table_name
SET field_name = replace(field_name, 'string_to_change', 'new_string')