Code Duplication    Length = 5-5 lines in 2 locations

modules/widgets/search.php 2 locations

@@ 378-382 (lines=5) @@
375
				<label>
376
					<?php esc_html_e( 'Sort by', 'jetpack' ); ?>
377
					<select class="jetpack-search-sort">
378
						<?php foreach ( $this->get_sort_types() as $sort => $label ) { ?>
379
							<option value="<?php echo esc_attr( $sort ); ?>" <?php selected( $current_sort, $sort ); ?>>
380
								<?php echo esc_html( $label ); ?>
381
							</option>
382
						<?php } ?>
383
					</select>
384
				</label>
385
			</div>
@@ 763-767 (lines=5) @@
760
					<select
761
						name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>"
762
						class="widefat jetpack-search-filters-widget__sort-order">
763
						<?php foreach ( $this->get_sort_types() as $sort_type => $label ) { ?>
764
							<option value="<?php echo esc_attr( $sort_type ); ?>" <?php selected( $instance['sort'], $sort_type ); ?>>
765
								<?php echo esc_html( $label ); ?>
766
							</option>
767
						<?php } ?>
768
					</select>
769
				</label>
770
			</p>