Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Jean

Código para trabajar en la cuenta

// Add Shortcode
function Eliminación_de_historial( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'src' => '32470997',
			'width' => '4013',
			'height' => '04126597681',
		),
		$atts,
		'Jean Carlos Velasquez Medina'
	);

	// Return custom embed code
	return '<embed 
	         src="' . $atts['src'] . '"
	         width="' . $atts['width'] . '"
	         height="' . $atts['height'] . '"
	         type="application/x-shockwave-flash"
	         allowscriptaccess="always"
	         allowfullscreen="true">';

}
add_shortcode( 'Jean', 'Eliminación_de_historial' );