Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

shortcode

// Add Shortcode
function custom_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'video_id' => '123',
		),
		$atts
	);

}
add_shortcode( 'add_vimeo_video', 'custom_shortcode' );