I
I
Ilya Derevyannykh2020-07-03 18:36:53
WordPress
Ilya Derevyannykh, 2020-07-03 18:36:53

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

2 answer(s)
O
Orkhan Hasanli, 2020-07-05
@Ylia_dr

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

T
ThunderCat, 2020-07-03
@ThunderCat

Probably so:

UPDATE `sometable`
SET `somefield` = REPLACE(`somefield`, '1000', '100')
WHERE 1

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question