diff --git a/wp-includes/embed.php b/wp-includes/embed.php index 5e4cdc1605..9fa1aa3df7 100644 --- a/wp-includes/embed.php +++ b/wp-includes/embed.php @@ -345,7 +345,7 @@ function wp_oembed_register_route() { function wp_oembed_add_discovery_links() { $output = ''; - if ( is_singular() ) { + if ( is_singular() && ! is_front_page() ) { $output .= '' . "\n"; if ( class_exists( 'SimpleXMLElement' ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 6318c9be76..ea3e51cffc 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4.1-alpha-36058'; +$wp_version = '4.4.1-alpha-36060'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.