Answer the question
In order to leave comments, you need to log in
How to bulk replace title?
WP site, how to bulk replace the 1st word in the title.
.....1000.... must be replaced by ....100...
Answer the question
In order to leave comments, you need to log in
Hello!
For example, using the search regex plugin. He knows how to search with the help of a regular expression.
You can search for something like:
^1000
and replace with:
100
Probably so:
UPDATE `sometable`
SET `somefield` = REPLACE(`somefield`, '1000', '100')
WHERE 1
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question