Code Duplication    Length = 5-5 lines in 2 locations

modules/search/class.jetpack-search-widget.php 2 locations

@@ 215-219 (lines=5) @@
212
			<h4 class="jetpack-search-filters-widget__sub-heading"><?php esc_html_e( 'Sort by', 'jetpack' ); ?></h4>
213
			<div class="jetpack-search-sort-wrapper">
214
				<select class="jetpack-search-sort">
215
					<?php foreach( $this->get_sort_types() as $sort => $label ) { ?>
216
						<option value="<?php echo esc_attr( $sort ); ?>" <?php selected( $current_sort, $sort ); ?>>
217
							<?php echo esc_html( $label ); ?>
218
						</option>
219
					<?php } ?>
220
				</select>
221
			</div>
222
		<?php endif;
@@ 431-435 (lines=5) @@
428
					<select
429
						name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>"
430
						class="widefat jetpack-search-filters-widget__sort-order">
431
		 				<?php foreach( $this->get_sort_types() as $sort_type => $label ) { ?>
432
							<option value="<?php echo esc_attr( $sort_type ); ?>" <?php selected( $sort, $sort_type ); ?>>
433
								<?php echo esc_html( $label ); ?>
434
							</option>
435
						<?php } ?>
436
					</select>
437
				</label>
438
			</p>