只需将注释添加到oEmbed。这里有一个小插件,可以用作MU插件或普通插件,这应该可以很好地解释发生了什么。
<?php
defined( \'ABSPATH\' ) or exit;
/* Plugin Name: (#105942) oEmbed Comments */
add_filter( \'comment_text\', \'wpse_105942_oembed_comments\', 0 );
function wpse_105942_oembed_comments( $comment )
{
add_filter( \'embed_oembed_discover\', \'__return_false\', 999 );
$comment = $GLOBALS[\'wp_embed\']->autoembed( $comment );
remove_filter( \'embed_oembed_discover\', \'__return_false\', 999 );
return $comment;
}