Skip to content

Instantly share code, notes, and snippets.

@ucheng
Created June 2, 2017 15:12
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 ucheng/6ee59517f8789ed278bff1f7eee7c9f4 to your computer and use it in GitHub Desktop.
Save ucheng/6ee59517f8789ed278bff1f7eee7c9f4 to your computer and use it in GitHub Desktop.
shortcode ob_start
<?php
add_shortcode('prefix_shortcode', 'prefix_shortcode');
function prefix_shortcode() {
ob_start();
?>
//your html
<?php
$output_string = ob_get_contents();
ob_end_clean();
return $output_string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment