Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Pardot Form Embed

Embed a Pardot conversion form on your site. Specify width and height. Useful to avoid HTML getting stripped by the editor, and avoiding use of custom fields.

// Add Shortcode
function br_pardot_form( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'source' => 'url',
			'width' => '100%',
			'height' => '500px',
		), $atts )
	);
}
add_shortcode( 'pardot-form', 'br_pardot_form' );