diff --git a/wp-includes/post-formats.php b/wp-includes/post-formats.php index 39eaa1a645..ec68932745 100644 --- a/wp-includes/post-formats.php +++ b/wp-includes/post-formats.php @@ -446,7 +446,7 @@ function get_the_url( $id = 0 ) { if ( empty( $post ) ) return ''; - if ( in_array( get_post_format( $post->ID, array( 'link', 'quote' ) ) ) ) { + if ( in_array( get_post_format( $post->ID ), array( 'link', 'quote' ) ) ) { $meta = get_post_format_meta( $post->ID ); if ( ! empty( $meta['url'] ) ) return apply_filters( 'get_the_url', esc_url_raw( $meta['url'] ), $post );