|
@@ 326-330 (lines=5) @@
|
| 323 |
|
<label> |
| 324 |
|
<?php esc_html_e( 'Sort by', 'jetpack' ); ?> |
| 325 |
|
<select class="jetpack-search-sort"> |
| 326 |
|
<?php foreach ( $this->get_sort_types() as $sort => $label ) { ?> |
| 327 |
|
<option value="<?php echo esc_attr( $sort ); ?>" <?php selected( $current_sort, $sort ); ?>> |
| 328 |
|
<?php echo esc_html( $label ); ?> |
| 329 |
|
</option> |
| 330 |
|
<?php } ?> |
| 331 |
|
</select> |
| 332 |
|
</label> |
| 333 |
|
</div> |
|
@@ 582-586 (lines=5) @@
|
| 579 |
|
<select |
| 580 |
|
name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>" |
| 581 |
|
class="widefat jetpack-search-filters-widget__sort-order"> |
| 582 |
|
<?php foreach ( $this->get_sort_types() as $sort_type => $label ) { ?> |
| 583 |
|
<option value="<?php echo esc_attr( $sort_type ); ?>" <?php selected( $instance['sort'], $sort_type ); ?>> |
| 584 |
|
<?php echo esc_html( $label ); ?> |
| 585 |
|
</option> |
| 586 |
|
<?php } ?> |
| 587 |
|
</select> |
| 588 |
|
</label> |
| 589 |
|
</p> |