jon-b
4/7/2014 - 3:42 AM

WordPress Shortcode Output Buffer

WordPress Shortcode Output Buffer

/**
 * Sample Shortcode
 * @since 1.0.0
 *
 * @param	null
 * @return	string	Site URL
 */
function jb_sample_shortcode( $atts ) {
	ob_start(); ?>
	<!-- hello world -->
	<?php $output_string = ob_get_contents();
	ob_end_clean();
	return $output_string;

	return $output;
}
add_shortcode( 'sample_shortcode','jb_sample_shortcode' );