Code Duplication    Length = 11-11 lines in 2 locations

modules/widgets/search.php 2 locations

@@ 759-769 (lines=11) @@
756
757
			<p class="jetpack-search-filters-widget__post-types-select">
758
				<label><?php esc_html_e( 'Post types to search (minimum of 1):', 'jetpack' ); ?></label>
759
				<?php foreach ( get_post_types( array( 'exclude_from_search' => false ), 'objects' ) as $post_type ) : ?>
760
					<label>
761
						<input
762
							type="checkbox"
763
							value="<?php echo esc_attr( $post_type->name ); ?>"
764
							name="<?php echo esc_attr( $this->get_field_name( 'post_types' ) ); ?>[]"
765
							<?php checked( empty( $instance['post_types'] ) || in_array( $post_type->name, $instance['post_types'] ) ); ?>
766
						/>&nbsp;
767
						<?php echo esc_html( $post_type->label ); ?>
768
					</label>
769
				<?php endforeach; ?>
770
			</p>
771
772
			<p>
@@ 848-858 (lines=11) @@
845
			<!-- Post types control -->
846
			<p class="jetpack-search-filters-widget__post-types-select">
847
				<label><?php esc_html_e( 'Post types to search (minimum of 1):', 'jetpack' ); ?></label>
848
				<?php foreach ( get_post_types( array( 'exclude_from_search' => false ), 'objects' ) as $post_type ) : ?>
849
					<label>
850
						<input
851
							type="checkbox"
852
							value="<?php echo esc_attr( $post_type->name ); ?>"
853
							name="<?php echo esc_attr( $this->get_field_name( 'post_types' ) ); ?>[]"
854
							<?php checked( empty( $instance['post_types'] ) || in_array( $post_type->name, $instance['post_types'], true ) ); ?>
855
						/>&nbsp;
856
						<?php echo esc_html( $post_type->label ); ?>
857
					</label>
858
				<?php endforeach; ?>
859
			</p>
860
861
			<!-- Filters control -->