Adding tab specific class

Allow targeting specific tab with a class instead of id.
This commit is contained in:
Oliver Juhas 2016-04-22 13:00:14 +02:00
parent 1905c5ea0a
commit 287d537349
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ if ( ! empty( $tabs ) ) : ?>
<?php endforeach; ?>
</ul>
<?php foreach ( $tabs as $key => $tab ) : ?>
<div class="panel entry-content wc-tab" id="tab-<?php echo esc_attr( $key ); ?>">
<div class="panel entry-content wc-tab tab-<?php echo esc_attr( $key ); ?>" id="tab-<?php echo esc_attr( $key ); ?>">
<?php call_user_func( $tab['callback'], $key, $tab ); ?>
</div>
<?php endforeach; ?>