Can't display slideshow and featured image after migration
-
Hi all
I just migrated latest WordPress to another with different domain name https://www.abc.com to https://xyz.abc.com .
I can see the website, but can’t display slideshow and featured image after migration:
I did following command in mysql:
UPDATE wp_options SET option_value = replace(option_value, ‘https://www.oldurl’, ‘https://xyz.abc.coml’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’;
UPDATE wp_posts SET guid = replace(guid, ‘https://www.abc.com’,’https://xyz.abc.com’);
UPDATE wp_posts SET post_content = replace(post_content, ‘https://www.abc.com’, ‘https://xyz.abc.com’);
UPDATE wp_postmeta SET meta_value = replace(meta_value,’https://www.abc.com’,’https://xyz.abc.com’);
Thanks
- The topic ‘Can't display slideshow and featured image after migration’ is closed to new replies.