Skip to content

Instantly share code, notes, and snippets.

@FSahinn
Created November 27, 2016 09:12
Show Gist options
  • Save FSahinn/88d8ef5a7df4766bac2a42dabed0d8b7 to your computer and use it in GitHub Desktop.
Save FSahinn/88d8ef5a7df4766bac2a42dabed0d8b7 to your computer and use it in GitHub Desktop.
wp_embed_register_handler( 'gist', '/https?:\/\/gist\.github\.com\/([a-z0-9]+)(\?file=.*)?/i', 'fshn_gist_embed' );
function fshn_gist_embed( $matches, $attr, $url, $rawattr ) {
$embed = sprintf(
'<script src="https://gist.github.com/%1$s.js%2$s"></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