mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
5 lines
199 B
Text
5 lines
199 B
Text
function rsssl_exclude_http_url($html) {
|
|
$html = str_replace("https://www.domain.com", "http://www.domain.com", $html);
|
|
return $html;
|
|
}
|
|
add_filter("rsssl_fixer_output","rsssl_exclude_http_url");
|