File: /var/www/shoetique/wp-content/themes/north-wp/vc_templates/vc_tabs.php
<?php
$output = $title = $interval = $el_class = '';
extract(shortcode_atts(array(
'title' => '',
'interval' => 0,
'el_class' => '',
'style'=> 'style1'
), $atts));
$el_class = $this->getExtraClass($el_class);
$element = 'thb_tabs '. $style ;
if ( 'vc_tour' == $this->shortcode) $element = 'thb_tour '. $style;
// Extract tab titles
preg_match_all( '/vc_tab title="([^\"]+)"(\stab_id\=\"([^\"]+)\"){0,1}/i', $content, $matches, PREG_OFFSET_CAPTURE );
$tab_titles = array();
/**
* vc_tabs
*
*/
if ( isset($matches[0]) ) { $tab_titles = $matches[0]; }
$tabs_nav = '';
$tabs_nav .= '<dl class="tabs" role="tablist">';
$i = 0;
foreach ( $tab_titles as $tab ) {
preg_match('/title="([^\"]+)"(\stab_id\=\"([^\"]+)\"){0,1}/i', $tab[0], $tab_matches, PREG_OFFSET_CAPTURE );
if(isset($tab_matches[1][0])) {
$tabs_nav .= '<dd role="presentation"><a href="#'. (isset($tab_matches[3][0]) ? $tab_matches[3][0] : sanitize_title( $tab_matches[1][0] ) ) .'" '. ($i == 0 ? ' class="active"' : '') .' role="tab">' . $tab_matches[1][0] . '</a></dd>';
}
$i++;
}
$tabs_nav .= '</dl>'."\n";
$css_class = apply_filters(VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, trim($element.$el_class), $this->settings['base']);
$output .= "\n\t".'<div class="'.$css_class.'" data-interval="'.$interval.'">';
// $output .= wpb_widget_title(array('title' => $title, 'extraclass' => $element.'_heading'));
$output .= "\n\t\t\t".$tabs_nav . '<ul class="tabs-content">';
$output .= "\n\t\t\t".wpb_js_remove_wpautop($content);
$output .= "\n\t".'</ul></div> '.$this->endBlockComment($element);
echo $output;