PluginProbe
Filter Everything — WordPress & WooCommerce Filters / 1.3.2
Filter Everything — WordPress & WooCommerce Filters v1.3.2
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
filter-everything / views / admin / filter-field-label.php

filter-field-label.php in Filter Everything — WordPress & WooCommerce Filters 1.3.2, at views/admin/filter-field-label.php

19 lines 650 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined('WPINC') ) {
4 wp_die();
5 }
6
7 ?><td class="wpc-filter-label-td"><?php
8 $label = esc_html( $attributes['label'] );
9 if( $label ) :
10 ?><label for="<?php if( isset( $attributes['id'] ) ){ echo esc_attr( $attributes['id'] ); } ?>" class="wpc-filter-label"><?php
11 echo $label;
12 if( isset( $attributes['required'] ) && $attributes['required'] ){
13 echo '<span class="wpc-field-required">*</span>'."\n";
14 }
15 ?></label>
16 <?php echo flrt_field_instructions($attributes); // Already escaped in function ?>
17 <?php echo flrt_tooltip($attributes); ?>
18 <?php endif; ?>
19 </td>