Skip to content

Instantly share code, notes, and snippets.

@JulioPotier
Created December 19, 2017 09:21
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 JulioPotier/050fa23e33510f27543d49435b401f36 to your computer and use it in GitHub Desktop.
Save JulioPotier/050fa23e33510f27543d49435b401f36 to your computer and use it in GitHub Desktop.
<?php
add_shortcode( 'script_foo', 'sc_script_foo_cb' );
function sc_script_foo_cb( $atts, $content ) {
echo '<script type="text/javascript" src="https://example.com/foo.js" />';
}
/*
Then in your content just use [script_foo] (the first parameter from 'add_shortcode')
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment