Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created November 26, 2012 15:02
Show Gist options
  • Save claudiosanches/4148654 to your computer and use it in GitHub Desktop.
Save claudiosanches/4148654 to your computer and use it in GitHub Desktop.
Wordpress - Script Shortcode
<?php
/**
* Embed Scripts in Wordpress editor.
*
* Usage:
* [js]http://youtsite.com/script.js[/js]
*
* @param array $atts
* @param string $content
* @return string
*/
function cs_shortcode_script( $atts, $content = null ) {
return '<script type="text/javascript" src="' . $content . '"></script>';
}
add_shortcode( 'js', 'cs_shortcode_script' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment