@@ 353-357 (lines=5) @@ | ||
350 | <label> |
|
351 | <?php esc_html_e( 'Sort by', 'jetpack' ); ?> |
|
352 | <select class="jetpack-search-sort"> |
|
353 | <?php foreach ( $this->get_sort_types() as $sort => $label ) { ?> |
|
354 | <option value="<?php echo esc_attr( $sort ); ?>" <?php selected( $current_sort, $sort ); ?>> |
|
355 | <?php echo esc_html( $label ); ?> |
|
356 | </option> |
|
357 | <?php } ?> |
|
358 | </select> |
|
359 | </label> |
|
360 | </div> |
|
@@ 614-618 (lines=5) @@ | ||
611 | <select |
|
612 | name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>" |
|
613 | class="widefat jetpack-search-filters-widget__sort-order"> |
|
614 | <?php foreach ( $this->get_sort_types() as $sort_type => $label ) { ?> |
|
615 | <option value="<?php echo esc_attr( $sort_type ); ?>" <?php selected( $instance['sort'], $sort_type ); ?>> |
|
616 | <?php echo esc_html( $label ); ?> |
|
617 | </option> |
|
618 | <?php } ?> |
|
619 | </select> |
|
620 | </label> |
|
621 | </p> |