Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

LR homepage Slider

// Add Shortcode
function home_product_slider( $atts , $content = null ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'nameplate' => '',
			'model' => '',
			'price' => '',
		),
		$atts
	);

}
add_shortcode( 'homeproductslider', 'home_product_slider' );