HEX
Server: LiteSpeed
System: Linux server53.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64
User: nahevttf (6494)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /home/nahevttf/public_html/wp-content/themes/woodmart/inc/modules/layouts/admin/templates/tabs.php
<?php
/**
 * Tabs template.
 *
 * @package Woodmart
 *
 * @var array  $tabs        Tabs.
 * @var string $current_tab Current tab.
 * @var string $base_url    Base url.
 */

?>
<div class="nav-tab-wrapper">
	<?php foreach ( $tabs as $key => $label ) : ?>
		<?php
		$classes = '';

		if ( $current_tab === $key ) {
			$classes .= ' nav-tab-active';
		}
		?>

		<a class="nav-tab<?php echo esc_attr( $classes ); ?>" href="<?php echo esc_attr( add_query_arg( 'wd_layout_type_tab', $key, $base_url ) ); ?>">
			<?php echo esc_html( $label ); ?>
		</a>
	<?php endforeach; ?>
</div>