diff --git a/src/wp-includes/embed-functions.php b/src/wp-includes/embed-functions.php
index 7e90221..eb97e68 100644
a
|
b
|
function get_post_embed_html( $post = null, $width, $height ) { |
466 | 466 | $embed_url = get_post_embed_url( $post ); |
467 | 467 | |
468 | 468 | $output = "<script type='text/javascript'>\n"; |
| 469 | $output .= "<!--//--><![CDATA[//><!--\n"; |
469 | 470 | if ( SCRIPT_DEBUG ) { |
470 | 471 | $output .= file_get_contents( ABSPATH . WPINC . '/js/wp-embed.js' ); |
471 | 472 | } else { |
… |
… |
function get_post_embed_html( $post = null, $width, $height ) { |
483 | 484 | include "js/wp-embed.min.js" |
484 | 485 | JS; |
485 | 486 | } |
| 487 | $output .= "//--><!]]>"; |
486 | 488 | $output .= "\n</script>"; |
487 | 489 | |
488 | 490 | $output .= sprintf( |