File: /var/www/html/wp-content/themes/kalium/vc_templates/lab_service_box_content.php
<?php
/**
* Box Content for Icon Box
*
* Laborator.co
* www.laborator.co
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Direct access not allowed.
}
// Atts
$atts = vc_map_get_attributes( $this->getShortcode(), $atts );
extract( $atts );
$link = vc_build_link( $link );
// Element Class
$class = $this->getExtraClass( $el_class );
$css_class = apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, $class, $this->settings['base'], $atts );
$css_class = "icon-box-content text-alignment-{$text_alignment} " . $css_class;
?>
<div class="<?php echo esc_attr( $css_class ) . vc_shortcode_custom_css_class( $css, ' ' ); ?>">
<h3>
<?php if ( $link['url'] ) : ?>
<a href="<?php echo esc_url( $link['url'] ); ?>" title="<?php echo esc_attr( $link['title'] ); ?>" target="<?php echo esc_attr( $link['target'] ); ?>"><?php echo esc_html( $title ); ?></a>
<?php else: ?>
<?php echo esc_html( $title ); ?>
<?php endif; ?>
</h3>
<div class="box-content-p">
<?php echo wp_kses_post( wpautop( $description ) ); ?>
</div>
</div>