Oct 11, 2020 1:37 am
Hi there
Is there any SQL command to change tags in the database, so all tags saying "super funny cars" become "funny cars"?
Thank you.
1 Reply
Oct 11, 2020 12:00 pm
for table wp_wpforo_topics
update wp_wpforo_topics set tags =
replace(tags,'super funny cars','funny cars');
for table wp_wpforo_tags
update wp_wpforo_tags set tag =
replace(tag,'super funny cars','funny cars');