|
@@ 269-273 (lines=5) @@
|
| 266 |
|
<h4 class="jetpack-search-filters-widget__sub-heading"><?php esc_html_e( 'Sort by', 'jetpack' ); ?></h4> |
| 267 |
|
<div class="jetpack-search-sort-wrapper"> |
| 268 |
|
<select class="jetpack-search-sort"> |
| 269 |
|
<?php foreach ( $this->get_sort_types() as $sort => $label ) { ?> |
| 270 |
|
<option value="<?php echo esc_attr( $sort ); ?>" <?php selected( $current_sort, $sort ); ?>> |
| 271 |
|
<?php echo esc_html( $label ); ?> |
| 272 |
|
</option> |
| 273 |
|
<?php } ?> |
| 274 |
|
</select> |
| 275 |
|
</div> |
| 276 |
|
<?php endif; |
|
@@ 510-514 (lines=5) @@
|
| 507 |
|
<select |
| 508 |
|
name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>" |
| 509 |
|
class="widefat jetpack-search-filters-widget__sort-order"> |
| 510 |
|
<?php foreach ( $this->get_sort_types() as $sort_type => $label ) { ?> |
| 511 |
|
<option value="<?php echo esc_attr( $sort_type ); ?>" <?php selected( $sort, $sort_type ); ?>> |
| 512 |
|
<?php echo esc_html( $label ); ?> |
| 513 |
|
</option> |
| 514 |
|
<?php } ?> |
| 515 |
|
</select> |
| 516 |
|
</label> |
| 517 |
|
</p> |