Moving your site from HTTP to HTTPS can be a challenge especially if it is WordPress based and it was not developed with HTTPS in mind from the get go. The SEO world was surprised to hear Google announce that HTTPS (SSL) will now be a ranking signal as it was first hinted several months ago by Matt Cutts but now it seems it is official.
Please note that in order to have HTTPS (SSL) the domain name in question must have a valid SSL Certificate installed as well as in many cases a dedicated IP address depending on your hosting provider. If you need help with that feel free to contact us and we can certainly help you.
function my_force_ssl() {
return true;
}
add_filter('force_ssl', 'my_force_ssl', 10, 3);
That is it so at this point you should now have your entire WordPress site on HTTPS (SSL).