Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
update posts set post_content = CONCAT('bla', post_content, 'bla-bla') where post_type = 'your_post_type';
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'