the_content_feed 是我需要的钩子。在我的例子中,我运行一个正则表达式来将相对URL替换为绝对URL,因此我将以下代码添加到functions.php
add_action(\'the_content_feed\', \'relative_to_absolute_links\');
function relative_to_absolute_links($content) {
return preg_replace("/(src=[\'\\"]){1}\\/{1}([^\\/][^\'\\"]+)([\'\\"])/im", "$1" . get_site_url() . "/$2$3", $content);
}