@@ 290-294 (lines=5) @@ | ||
287 | <label> |
|
288 | <?php esc_html_e( 'Sort by', 'jetpack' ); ?> |
|
289 | <select class="jetpack-search-sort"> |
|
290 | <?php foreach ( $this->get_sort_types() as $sort => $label ) { ?> |
|
291 | <option value="<?php echo esc_attr( $sort ); ?>" <?php selected( $current_sort, $sort ); ?>> |
|
292 | <?php echo esc_html( $label ); ?> |
|
293 | </option> |
|
294 | <?php } ?> |
|
295 | </select> |
|
296 | </label> |
|
297 | </div> |
|
@@ 551-555 (lines=5) @@ | ||
548 | <select |
|
549 | name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>" |
|
550 | class="widefat jetpack-search-filters-widget__sort-order"> |
|
551 | <?php foreach ( $this->get_sort_types() as $sort_type => $label ) { ?> |
|
552 | <option value="<?php echo esc_attr( $sort_type ); ?>" <?php selected( $sort, $sort_type ); ?>> |
|
553 | <?php echo esc_html( $label ); ?> |
|
554 | </option> |
|
555 | <?php } ?> |
|
556 | </select> |
|
557 | </label> |
|
558 | </p> |