diff --git a/src/wp-includes/embed.php b/src/wp-includes/embed.php index ed0afe4375..a15ef8e7ed 100644 --- a/src/wp-includes/embed.php +++ b/src/wp-includes/embed.php @@ -380,14 +380,10 @@ function get_post_embed_url( $post = null ) { function get_oembed_endpoint_url( $permalink = '', $format = 'json' ) { $url = rest_url( 'oembed/1.0/embed' ); - if ( 'json' === $format ) { - $format = false; - } - if ( '' !== $permalink ) { $url = add_query_arg( array( 'url' => urlencode( $permalink ), - 'format' => $format, + 'format' => ( 'json' !== $format ) ? $format : false, ), $url ); }