Skip to content

Instantly share code, notes, and snippets.

@walesmd
Created February 3, 2009 17:00
Show Gist options
  • Save walesmd/57620 to your computer and use it in GitHub Desktop.
Save walesmd/57620 to your computer and use it in GitHub Desktop.
<?php
function gist($atts) {
extract(shortcode_atts(array('id' => NULL), $atts));
if ($id !== NULL) {
return '<script type="text/javascript" src="http://gist.github.com/' . $id . '.js"></script>';
}
}
add_shortcode('gist', 'gist');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment