@@ 2588-2594 (lines=7) @@ | ||
2585 | ||
2586 | $get = $_GET; |
|
2587 | ||
2588 | foreach ( $get as $k => $v ) { |
|
2589 | if ( is_array( $v ) || in_array( $k, $excluded_filters ) || strlen( $v ) < 1 ) |
|
2590 | continue; |
|
2591 | ?> |
|
2592 | <input type="hidden" name="<?php echo esc_attr( $k ); ?>" value="<?php echo esc_attr( $v ); ?>" /> |
|
2593 | <?php |
|
2594 | } |
|
2595 | ||
2596 | if ( false !== $this->callback( 'header', $reorder ) ) { |
|
2597 | return null; |
|
@@ 3120-3126 (lines=7) @@ | ||
3117 | ||
3118 | $get = $_GET; |
|
3119 | ||
3120 | foreach ( $get as $k => $v ) { |
|
3121 | if ( in_array( $k, $excluded_filters ) || strlen( $v ) < 1 ) |
|
3122 | continue; |
|
3123 | ?> |
|
3124 | <input type="hidden" name="<?php echo esc_attr( $k ); ?>" value="<?php echo esc_attr( $v ); ?>" /> |
|
3125 | <?php |
|
3126 | } |
|
3127 | ||
3128 | $zebra = true; |
|
3129 |