Code Duplication    Length = 5-5 lines in 2 locations

modules/widgets/search.php 2 locations

@@ 304-308 (lines=5) @@
301
				<label>
302
					<?php esc_html_e( 'Sort by', 'jetpack' ); ?>
303
					<select class="jetpack-search-sort">
304
						<?php foreach ( $this->get_sort_types() as $sort => $label ) { ?>
305
							<option value="<?php echo esc_attr( $sort ); ?>" <?php selected( $current_sort, $sort ); ?>>
306
								<?php echo esc_html( $label ); ?>
307
							</option>
308
						<?php } ?>
309
					</select>
310
				</label>
311
			</div>
@@ 560-564 (lines=5) @@
557
					<select
558
						name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>"
559
						class="widefat jetpack-search-filters-widget__sort-order">
560
						<?php foreach ( $this->get_sort_types() as $sort_type => $label ) { ?>
561
							<option value="<?php echo esc_attr( $sort_type ); ?>" <?php selected( $instance['sort'], $sort_type ); ?>>
562
								<?php echo esc_html( $label ); ?>
563
							</option>
564
						<?php } ?>
565
					</select>
566
				</label>
567
			</p>