Update url https cho subsite trong multisite wordpress. Vâng trong tạo subsite thì nó sẽ không có https. Sau đây mình xin chia sẽ code để làm việc này
1 2 3 4 5 6 7 8 9 10 11 12 13 |
//update url ssl switch_to_blog($blog_id); $blog_details = get_blog_details($blog_id); $domain = $blog_details->domain; $siteurl = "https://".$domain; $data = array( 'home' => $siteurl, 'siteurl' => $siteurl, 'domain' => $domain ); update_blog_details($blog_id, $data); update_option("home",$siteurl); update_option("siteurl",$siteurl); |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress