Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

LSM Properties

// Add Shortcode
function lsm_properties( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'featured' => 'true',
			'id' => '',
		),
		$atts
	);

}
add_shortcode( 'lsm_properties', 'lsm_properties' );