Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Test Shortcode

// Add Shortcode
function my_custom_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'the_postID' => '44',
		),
		$atts
	);

}
add_shortcode( 'test_shortcode', 'my_custom_shortcode' );