PluginProbe
Filter Everything — WordPress & WooCommerce Filters / trunk
Filter Everything — WordPress & WooCommerce Filters vtrunk
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 1.6.3 All 51 releases
filter-everything / views / admin / filter-field-input.php

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

12 lines 375 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined('ABSPATH') ) {
4 exit;
5 }
6
7 ?><td class="wpc-filter-field-td">
8 <div class="wpc-field-wrap <?php if( isset( $attributes['id'] ) ){ echo esc_attr( $attributes['id'] ); } ?>-wrap">
9 <?php echo flrt_render_input( $attributes ); // Already escaped in function ?>
10 <?php do_action('wpc_after_filter_input', $attributes ); ?>
11 </div>
12 </td>