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' );