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