Skip to content

Instantly share code, notes, and snippets.

@tiendungdev
Created July 11, 2022 09:58
Show Gist options
  • Save tiendungdev/e01c87bb22477b3b44a33ab6a9caec41 to your computer and use it in GitHub Desktop.
Save tiendungdev/e01c87bb22477b3b44a33ab6a9caec41 to your computer and use it in GitHub Desktop.
Simple shortcode with ob_start
<?php
function vts_shortcode_box(){
ob_start();
?>
<div class="box">Content blabla</div>
<?php
$result = ob_get_contents();
ob_end_clean();
return $result;
}
add_shortcode('box', 'vts_shortcode_box');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment