?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/themes/quadric/woocommerce/single-product/tabs/



?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/woocommerce/single-product

?? Viewing: tabs.php

<?php
/**
 * Single Product tabs
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/single-product/tabs/tabs.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see     https://docs.woocommerce.com/document/template-structure/
 * @package WooCommerce/Templates
 * @version 3.8.0
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

/**
 * Filter tabs and allow third parties to add their own
 *
 * Each tab is an array containing title, callback and priority.
 * @see woocommerce_default_product_tabs()
 */
$tabs = apply_filters( 'woocommerce_product_tabs', array() );

if ( ! empty( $tabs ) ) : ?>

	<div class="edgtf-accordion-holder edgtf-toggle edgtf-boxed woocommerce-tabs wc-tabs-wrapper">		
		<?php foreach ( $tabs as $key => $tab ) : ?>
			<h6 class="clearfix edgtf-title-holder">
				<span class="edgtf-tab-title">
					<span class="edgtf-tab-title-inner">
						<?php echo apply_filters( 'woocommerce_product_' . $key . '_tab_title', esc_html( $tab['title'] ), $key ); ?>
					</span>
				</span>
			</h6>
			<div class="edgtf-accordion-content panel entry-content wc-tab">
				<div class="edgtf-accordion-content-inner">
					<?php call_user_func( $tab['callback'], $key, $tab ); ?>
				</div>
			</div>
		<?php endforeach; ?>
	</div>

<?php endif; ?>


??

??