Через phpMyAdmin сделайте SQL запрос, test.ru поменяйте на свой домен:
UPDATE wp_options SET option_value = REPLACE(option_value, 'http://test.ru', 'https://test.ru') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET post_content = REPLACE (post_content, 'http://test.ru', 'https://test.ru');
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, 'http://test.ru','https://test.ru');
UPDATE wp_comments SET comment_content = REPLACE (comment_content, 'http://test.ru', 'https://test.ru');
UPDATE wp_comments SET comment_author_url = REPLACE (comment_author_url, 'http://test.ru', 'https://test.ru');