mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 09:07:59 +01:00
Enable more flexibility for non-URL GUIDs.
props stevenkword. fixes #31080. Built from https://develop.svn.wordpress.org/trunk@31726 git-svn-id: http://core.svn.wordpress.org/trunk@31707 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6e14ff9234
commit
c16129d3cf
@ -167,6 +167,7 @@ add_filter( 'comment_text_rss', 'ent2ncr', 8 );
|
||||
add_filter( 'comment_text_rss', 'esc_html' );
|
||||
add_filter( 'bloginfo_rss', 'ent2ncr', 8 );
|
||||
add_filter( 'the_author', 'ent2ncr', 8 );
|
||||
add_filter( 'the_guid', 'esc_url' );
|
||||
|
||||
// Misc filters
|
||||
add_filter( 'option_ping_sites', 'privacy_ping_filter' );
|
||||
|
@ -172,7 +172,14 @@ function get_the_title( $post = 0 ) {
|
||||
* @param int|WP_Post $id Optional. Post ID or post object.
|
||||
*/
|
||||
function the_guid( $id = 0 ) {
|
||||
echo esc_url( get_the_guid( $id ) );
|
||||
/**
|
||||
* Filter the escaped Global Unique Identifier (guid) of the post.
|
||||
*
|
||||
* @since 4.2.0
|
||||
*
|
||||
* @param string $post_guid Escaped Global Unique Identifier (guid) of the post.
|
||||
*/
|
||||
echo apply_filters( 'the_guid', get_the_guid( $id ) );
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.2-alpha-31725';
|
||||
$wp_version = '4.2-alpha-31726';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user