Skip to content

Instantly share code, notes, and snippets.

@freekrai
Last active December 11, 2015 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freekrai/4625115 to your computer and use it in GitHub Desktop.
Save freekrai/4625115 to your computer and use it in GitHub Desktop.
Embed Gists in wordpress via shortocde
// Place this code in your functions.php
// Then when you want to embed a gist, use [gist GISTID] and it will show up in your post
function embedGists( $atts ) {
$gist = $atts[0];
$string = '<script src="https://gist.github.com/'.$gist.'.js"></script>';
return $string;
}
add_shortcode( 'gist', 'embedGists' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment