Skip to content

Instantly share code, notes, and snippets.

@trepmal
Last active August 29, 2015 13:57
Show Gist options
  • Save trepmal/9552060 to your computer and use it in GitHub Desktop.
Save trepmal/9552060 to your computer and use it in GitHub Desktop.
<?php
/* Adds a shortcode for displaying GitHub Gists */
function create_github_gist($atts) {
extract(shortcode_atts(array(
'source' => "https://gist.github.com/SufferMyJoy/9397075",
), $atts));
return '<script src="' . esc_attr( $source ) . '.js"></script>';
}
add_shortcode('github_gist', 'create_github_gist');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment