diff --git a/wp-includes/post-formats.php b/wp-includes/post-formats.php index 5a2c1f7030..ac5a03edde 100644 --- a/wp-includes/post-formats.php +++ b/wp-includes/post-formats.php @@ -366,7 +366,7 @@ function post_formats_compat( $content, $post_id = 0 ) { '%s', empty( $compat['link_class'] ) ? '' : sprintf( 'class="%s" ', esc_attr( $compat['link_class'] ) ), esc_url( $url ), - empty( $post->post_title ) ? esc_url( $meta['link_url'] ) : apply_filters( 'the_title', $post->post_title, $post->ID ) + empty( $post->post_title ) ? esc_url( $url ) : apply_filters( 'the_title', $post->post_title, $post->ID ) ); } break;