diff --git a/wp-includes/post-formats.php b/wp-includes/post-formats.php
index 5a2c1f7..89f09c6 100644
|
a
|
b
|
function get_the_post_format_url( $post_id = 0 ) {
|
| 840 | 840 | } |
| 841 | 841 | |
| 842 | 842 | if ( ! empty( $meta_link ) ) |
| 843 | | return apply_filters( 'get_the_post_format_url', esc_url_raw( $meta_link ), $post ); |
| | 843 | return apply_filters( 'get_the_post_format_url', $meta_link, $post ); |
| 844 | 844 | } |
| 845 | 845 | |
| 846 | 846 | if ( ! empty( $post->post_content ) ) |
| … |
… |
function get_the_post_format_url( $post_id = 0 ) {
|
| 851 | 851 | * Attempt to output a URL from a post's content |
| 852 | 852 | * |
| 853 | 853 | * @since 3.6.0 |
| 854 | | *. |
| 855 | 854 | */ |
| 856 | 855 | function the_post_format_url() { |
| 857 | 856 | echo esc_url( get_the_post_format_url() ); |