重写外部链接(Wordpress)

时间:2017-02-21 14:57:12

标签: php wordpress

我需要将照片托管网站外部网址(http://ipic.su)从我的网站打开https协议。这个照片托管有http和https版本,所以有时我的用户发布http链接,导致我网站上的用户发出混合内容警告。

我认为这可能是通过使用某个函数在url中使用https://自动替换http://来实现的吗?

1 个答案:

答案 0 :(得分:2)

您可以使用the_content过滤器。

,例如,一种非常简单的方法:

function ipic_to_https_filter($content) {
  $new_content = str_replace('http://ipic.su', 'https://ipic.su', $content);
  return $new_content;
}

add_filter( 'the_content', 'ipic_to_https_filter' );