4
4
4upik2016-03-27 12:18:56
MySQL
4upik, 2016-03-27 12:18:56

How to bulk add text to mysql records at the beginning and at the end, wordpress site?

How to bulk add text to mysql records at the beginning and at the end? wordpress

Answer the question

In order to leave comments, you need to log in

2 answer(s)
N
nozzy, 2016-03-27
@nozzy

update posts
set post_content = CONCAT('bla', post_content, 'bla-bla')
where post_type = 'your_post_type';

Y
Yakov Vylegzhanin, 2016-03-28
@vylegzhanin

update wp_posts
set post_content = concat('content start', post_content, 'content end')
where post_type = 'post' or post_type = 'page' and post_status = 'publish'

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question