PluginProbe
Filter Everything — WordPress & WooCommerce Filters / 1.9.7
Filter Everything — WordPress & WooCommerce Filters v1.9.7
1.9.7 1.9.6 1.9.5 1.9.4 1.9.3 1.9.2.2 1.9.2.1 trunk 1.2.1 1.2.3 1.2.4 1.2.5 1.3.0 1.3.1 1.3.2 1.4.1 1.4.4 1.4.5 1.4.8 1.4.9 1.5.0 1.5.1 1.6.0 1.6.1 1.6.2 All 52 releases
← All changes | views/admin/options.php +3 -0 1.9.2.11.9.7 View file →
@@ -22,8 +22,11 @@
22 22 <a class='nav-tab<?php echo esc_attr( $class ); ?>'
23 23 href='<?php echo esc_url( $tabUrl ); ?>'><?php echo $label ?>
24 24 <?php if (method_exists($tab, 'labelIcon')) {
25 25 echo '<span class="' . esc_attr('wpc-nav-tab-icon') . '">' .$tab->labelIcon() . '</span>';
26 + }
27 + if (method_exists($tab, 'labelBadge')) {
28 + echo $tab->labelBadge(); // escaped by the tab
26 29 }?>
27 30 </a>
28 31 <?php
29 32 if (method_exists($tab, 'getFreeLink')) {