ads
3 months ago
groups
1 week ago
metaboxes
1 year ago
placements
2 months ago
screens
3 months ago
settings
1 year ago
support
2 months ago
tables
1 week ago
tools
1 week ago
upgrades
1 year ago
widgets
1 week ago
bulk-edit.php
3 months ago
feedback-disable.php
1 year ago
header-tabs.php
3 months ago
header.php
3 months ago
index.php
2 years ago
manual-link.php
1 year ago
page-bulk-edit.php
1 year ago
page-quick-edit.php
1 year ago
quick-edit.php
2 months ago
screen-options.php
3 months ago
table-views-list.php
3 months ago
welcome-box.php
1 year ago
header-tabs.php
20 lines
| 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 |