Make WordPress Core

Ticket #31080: 31080.2.diff

File 31080.2.diff, 1.2 KB (added by stevenkword, 10 years ago)
  • wp-includes/default-filters.php

     
    167167add_filter( 'comment_text_rss',   'esc_html'        );
    168168add_filter( 'bloginfo_rss',       'ent2ncr',      8 );
    169169add_filter( 'the_author',         'ent2ncr',      8 );
     170add_filter( 'the_guid',           'esc_url'         );
    170171
    171172// Misc filters
    172173add_filter( 'option_ping_sites',        'privacy_ping_filter'                 );
  • wp-includes/post-template.php

     
    172172 * @param int|WP_Post $id Optional. Post ID or post object.
    173173 */
    174174function the_guid( $id = 0 ) {
    175         echo esc_url( get_the_guid( $id ) );
     175        /**
     176         * Filter the escaped the Global Unique Identifier (guid) of the post.
     177         *
     178         * @since 4.2.0
     179         *
     180         * @param string $post_guid Escaped Global Unique Identifier (guid) of the post.
     181         */
     182        echo apply_filters( 'the_guid', get_the_guid( $id ) );
    176183}
    177184
    178185/**