Skip to content

Instantly share code, notes, and snippets.

@timersys
Created December 3, 2019 14:50
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 timersys/41d4d07a0ee184acaabe11ad862a6e75 to your computer and use it in GitHub Desktop.
Save timersys/41d4d07a0ee184acaabe11ad862a6e75 to your computer and use it in GitHub Desktop.
custom shortcode to insert javascript
// insert javascript into WordPress posts or popups
// use shortcode [wpp_insert]
add_shortcode( 'wpp_insert', 'wpp_insert_code' );
function wpp_insert_code() {
ob_start();
?>
<!-- paste your html and javascript here -->
<?php
$html = ob_get_clean();
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment