bueltge
8/2/2011 - 7:03 AM

Debug Shortcodes

Debug Shortcodes

function fb_show_shortcodes( $atts, $content = NULL ) {
	
	extract( shortcode_atts( 
		array('linebreak'=>''),
		$atts
	) );
	
	$brackets        = array();
	$brackets[0]     = "/\[/";
	$brackets[1]     = "/\]/";
	$replace_with    = array();
	$replace_with[0] = "[";
	$replace_with[1] = "]";
	
	$content  = preg_replace( $brackets, $replace_with, trim($content) );
	$content .= ( ! empty($linebreak) ) ? "<br />" : "";
	
	return $content;
}
// use ssc as shortcode and display all shortcodes of install
add_shortcode( 'ssc', 'fb_show_shortcodes' );