修改目录:wp-content/themes/主题
在主题下找到functions.php
1、修改 functions.php 文件:(适合wordpress站长)
这个 functions.php指的是你主题的 functions文件哦,修改时注意一下,因为现在很多主题这个文件是独立的。
//WordPress SSL 证书变绿色 update<br />add_filter('get_header', 'fanly_ssl');<br />function fanly_ssl(){<br />if( is_ssl() ){<br />function fanly_ssl_main ($content){<br />$siteurl = get_option('siteurl');<br />$upload_dir = wp_upload_dir();<br />$content = str_replace( 'http:'.strstr($siteurl, '//'), 'https:'.strstr($siteurl, '//'), $content);<br />$content = str_replace( 'http:'.strstr($upload_dir['baseurl'], '//'), 'https:'.strstr($upload_dir['baseurl'], '//'), $content);<br />return $content;<br />}<br />ob_start("fanly_ssl_main");<br />}<br />}<br />// 全部结束