File: /var/www/shoetique/wp-content/themes/north-wp/vc_templates/thb_banner.php
<?php function thb_banner( $atts, $content = null ) {
    extract(shortcode_atts(array(
       	'type'     				=> 'effect-lily',
       	'banner_bg' 			=> false,
       	'banner_height' 	=> '300',
       	'title'						=> '',
       	'subtitle'				=> '',
       	'overlay_link'		=> ''
    ), $atts));
	
	$out = '';
	
	$img_id = preg_replace('/[^\d]/', '', $banner_bg);
	$img = wp_get_attachment_image_src($img_id, 'full');
	
  $out .= '<figure class="banner '.$type.'" style="height:'.$banner_height.'px;">';
	$out .= '<img src="'.$img[0].'"></img><figcaption>';
	$out .= '<h2>'.$title.'</h2>';
	$out .= '<p>'.$subtitle.'</p><figcaption>';
  	
	if ($overlay_link) {
  	$out .= '<a href="'.$overlay_link.'"></a>';
	}
  $out .= '</figure>';
  return $out;
}
add_shortcode('thb_banner', 'thb_banner');