同样的问题也解决了here
我只是在我的子主题函数中添加了最后一条注释中的代码。php,现在嵌入工作正常。由于自动添加了段落,因此似乎有必要
上述参考中的功能代码:
add_filter( \'the_content\', \'my_autoembed_adjustments\', 7 );
/**
* Add a new line around paragraph links
* @param string $content
* @return string $content
*/
function my_autoembed_adjustments( $content ){
$pattern = \'|(?<!")(?<!"\\s)(https?:\\/\\/[^\\s"\\[<]+)|im\'; // your own pattern
$to = "<p>\\n$1\\n</p>"; // your own pattern
$content = preg_replace( $pattern, $to, $content );
return $content;
}