算了吧!我需要挂接的函数称为“The\\u content”,因为这是直接从数据库中提取的帖子内容。
我将此代码添加到函数中。我的主题的php文件。
function force_https_the_content($content) {
if ( is_ssl() )
{
$content = str_replace( \'src="http://\', \'src="https://\', $content );
}
return $content;
}
add_filter(\'the_content\', \'force_https_the_content\');