Skip to content

Instantly share code, notes, and snippets.

@stevenkword
Created March 11, 2015 23:37
Show Gist options
  • Save stevenkword/59c994b7ca8925d47f61 to your computer and use it in GitHub Desktop.
Save stevenkword/59c994b7ca8925d47f61 to your computer and use it in GitHub Desktop.
Change Escaping Method for GUIDs in WordPress
<?php
remove_filter( 'the_guid', 'esc_url' );
function html_escape_the_guid( $guid ) {
return esc_html( $guid );
}
add_filter( 'the_guid', 'html_escape_the_guid' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment