PluginProbe
Tag Groups is the Advanced Way to Display Your Taxonomy Terms / trunk
Tag Groups is the Advanced Way to Display Your Taxonomy Terms vtrunk
2.2.2 2.2.1 2.2.0 trunk 1.40.0 1.40.2 1.41.0 1.42.1 1.43.0 1.43.1 1.43.10 1.43.10.1 1.43.2 1.43.3 1.43.4 1.43.5 1.43.6 1.43.7 1.43.9 1.44.0 1.44.1 1.44.3 1.44.3.1 2.0.0 2.0.1 All 36 releases
tag-groups / views / admin / settings_tabs.view.php

settings_tabs.view.php in Tag Groups is the Advanced Way to Display Your Taxonomy Terms trunk, at views/admin/settings_tabs.view.php

16 lines 504 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <h2 class="nav-tab-wrapper">
2 <?php foreach ($tabs as $slug => $label) :
3 $settings_url = add_query_arg(array( 'active-tab' => $slug ), menu_page_url($page, false));
4
5 ?>
6 <a href="<?php echo esc_url($settings_url) ?>"
7 aria-current="<?php echo esc_attr($slug == $active_tab ? 'true' : 'false'); ?>"
8 class="nav-tab
9 <?php if ($slug == $active_tab) : ?>
10 nav-tab-active
11 <?php endif; ?>
12 "><?php echo esc_html($label) ?>
13 </a>
14 <?php endforeach; ?>
15 </h2>
16