Skip to content

Instantly share code, notes, and snippets.

@y-krn
Last active May 8, 2016 12:06
Show Gist options
  • Save y-krn/1d87a31d81b26db857f1fed436a3db95 to your computer and use it in GitHub Desktop.
Save y-krn/1d87a31d81b26db857f1fed436a3db95 to your computer and use it in GitHub Desktop.
<?php
wp_embed_register_handler( 'gist', '/https?:\/\/gist\.github\.com\/([a-z0-9]+)\/([a-z0-9]+)(#file=.*)?/i', function( $matches, $attr, $url, $rawattr ) {
$embed = sprintf(
'<script src="https://gist.github.com/%1$s/%2$s.js"></script>',
esc_attr( $matches[1] ),
esc_attr( $matches[2] )
);
return apply_filters( 'embed_gist', $embed, $matches, $attr, $url, $rawattr );
} );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment