Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

COMEIN_YT

// Add Shortcode
function comein_youtube( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'normal_movie' => '',
			'pjm_movie' => '',
		),
		$atts
	);

}
add_shortcode( 'comeinyt', 'comein_youtube' );