PluginProbe
Adminify – White Label, Admin Menu Editor, Login Customizer / 4.0
Adminify – White Label, Admin Menu Editor, Login Customizer v4.0
4.3.1 4.3.0 4.2.26 4.2.25 4.2.24 4.2.23 4.2.22 4.2.21 4.2.20 4.2.19 4.2.18 4.2.17 4.2.16 4.2.15 4.2.14 4.2.13 4.2.12 4.2.11 4.2.10 4.2.9 4.2.8 4.2.7 4.2.6 4.2.5 4.1.17 All 164 releases
← All changes | Libs/adminify-framework/fields/tabbed/tabbed.php +3 -3 4.2.204.0 View file →
@@ -17,9 +17,9 @@
17 17 public function render() {
18 18
19 19 $unallows = array( 'tabbed' );
20 20
21 - echo wp_kses_post( $this->field_before() );
21 + echo $this->field_before();
22 22
23 23 echo '<div class="adminify-tabbed-nav" data-depend-id="'. esc_attr( $this->field['id'] ) .'">';
24 24 foreach ( $this->field['tabs'] as $key => $tab ) {
25 25
@@ -25,9 +25,9 @@
25 25
26 26 $tabbed_icon = ( ! empty( $tab['icon'] ) ) ? '<i class="adminify--icon '. esc_attr( $tab['icon'] ) .'"></i>' : '';
27 27 $tabbed_active = ( empty( $key ) ) ? 'adminify-tabbed-active' : '';
28 28
29 - echo '<a href="#" class="'. esc_attr( $tabbed_active ) .'"">'. wp_kses_post( $tabbed_icon ) . esc_html( $tab['title'] ) .'</a>';
29 + echo '<a href="#" class="'. esc_attr( $tabbed_active ) .'"">'. $tabbed_icon . esc_attr( $tab['title'] ) .'</a>';
30 30
31 31 }
32 32 echo '</div>';
33 33
@@ -55,9 +55,9 @@
55 55
56 56 }
57 57 echo '</div>';
58 58
59 - echo wp_kses_post( $this->field_after() );
59 + echo $this->field_after();
60 60
61 61 }
62 62
63 63 }