'', 'link' => '', 'vertical_alignment' => 'center', 'target' => '_self' ); extract(shortcode_atts($args, $atts)); $content = preg_replace('#^<\/p>|

$#', '', $content); $image_alt = ''; $banner_classes = array('qode-banner'); if($vertical_alignment != '') { $banner_classes[] = 'qode-banner-va-'.$vertical_alignment; } $html = ''; $html .= '

'; if($link != '') { $html .= ''; } if (is_numeric($image)) { $image_src = wp_get_attachment_url($image); $image_alt = get_post_meta($image, '_wp_attachment_image_alt', true); } else { $image_src = $image; } $html .= '
'; $html .= '' . $image_alt . ''; $html .= '
'; $html .= '
'; $html .= '
'; $html .= '
'; $html .= do_shortcode($content); $html .= '
'; $html .= '
'; $html .= '
'; $html .= '
'; return $html; } add_shortcode('qode_banner', 'qode_banner'); }