|
@@ 344-348 (lines=5) @@
|
| 341 |
|
<label> |
| 342 |
|
<?php esc_html_e( 'Sort by', 'jetpack' ); ?> |
| 343 |
|
<select class="jetpack-search-sort"> |
| 344 |
|
<?php foreach ( $this->get_sort_types() as $sort => $label ) { ?> |
| 345 |
|
<option value="<?php echo esc_attr( $sort ); ?>" <?php selected( $current_sort, $sort ); ?>> |
| 346 |
|
<?php echo esc_html( $label ); ?> |
| 347 |
|
</option> |
| 348 |
|
<?php } ?> |
| 349 |
|
</select> |
| 350 |
|
</label> |
| 351 |
|
</div> |
|
@@ 601-605 (lines=5) @@
|
| 598 |
|
<select |
| 599 |
|
name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>" |
| 600 |
|
class="widefat jetpack-search-filters-widget__sort-order"> |
| 601 |
|
<?php foreach ( $this->get_sort_types() as $sort_type => $label ) { ?> |
| 602 |
|
<option value="<?php echo esc_attr( $sort_type ); ?>" <?php selected( $instance['sort'], $sort_type ); ?>> |
| 603 |
|
<?php echo esc_html( $label ); ?> |
| 604 |
|
</option> |
| 605 |
|
<?php } ?> |
| 606 |
|
</select> |
| 607 |
|
</label> |
| 608 |
|
</p> |