Last active
August 29, 2015 13:57
-
-
Save trepmal/9552060 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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