mass search and replace
-
Hi, I am testing your plugin on a multi site set up. I have this code in a text slide
<div style="background-image: url(../image1.png); height: 400px; width: 500px; border: none;">Well hello there</div>
and I want to do a mass search and replace of every time it occurs and swap it out with
<div style="background-image: url(../someotherimage2.png); height: 500px; width: 500px; border: none;">Well goodbye there</div>
I see from this post https://www.hongkiat.com/blog/how-to-search-and-replace-wordpress-in-blog-post/ that I would do something like this in phpmyadmin
UPDATE wp_posts SET post_content = REPLACE (
post_content,
‘Item to replace here’,
‘Replacement text here’);but I am displaying the slideshow in an admin dashboard widget https://www.ads-software.com/extend/plugins/dashboard-widget-sidebar/. So how do I do it?
I backed up my database before hand.Thanks
https://www.ads-software.com/extend/plugins/slideshow-jquery-image-gallery/
- The topic ‘mass search and replace’ is closed to new replies.