WordPress 开启https后台跳首页

 

WordPress https后台跳首页

 

主题文件functions.php 添加:

/* 替换图片链接为 https */

function my_content_manipulator($content){

if( is_ssl() ){

$content = str_replace('http://www.xxx.cn/wp-content/uploads', 'https://www.xxx.cn/wp-content/uploads', $content);

}

return $content;

}

add_filter('the_content', 'my_content_manipulator');

 

文章来源:刘俊涛的博客 欢迎关注公众号、留言、评论,一起学习。

__________________________________________________________________________________

若有帮助到您,欢迎点击推荐,您的支持是对我坚持最好的肯定(*^_^*)

posted @ 2020-11-19 10:33  刘俊涛的博客  阅读(253)  评论(0编辑  收藏  举报