PluginProbe
Advanced Ads – Ad Manager & AdSense / 2.0.21
Advanced Ads – Ad Manager & AdSense v2.0.21
2.0.26 2.0.25 2.0.24 2.0.23 2.0.22 2.0.21 1.38.0 1.39.0 1.39.1 1.39.2 1.39.3 1.39.4 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.40.0 1.40.1 1.40.2 All 348 releases
advanced-ads / views / admin / header-tabs.php
header-tabs.php
20 lines 521 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Header tab menu on admin pages
4 *
5 * @package AdvancedAds
6 * @author Advanced Ads <info@wpadvancedads.com>
7 *
8 * @var array $tabs Array of screen tabs.
9 * @var string $active Active tab id.
10 */
11
12 ?>
13 <div class="advads-header-tabs">
14 <?php foreach ( $tabs as $tab_id => $tab_data ) : ?>
15 <a href="<?php echo esc_url( add_query_arg( 'sub_page', $tab_id ) ); ?>"<?php echo $active === $tab_id ? 'class="is-active"' : ''; ?>>
16 <?php echo esc_html( $tab_data['label'] ); ?>
17 </a>
18 <?php endforeach; ?>
19 </div>
20