Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

code

// Add Shortcode
function code_shortcode( $atts , $content = null ) {

	// Attributes
	$atts = shortcode_atts(
		array(
		),
		$atts
	);

}
add_shortcode( 'code', 'code_shortcode' );