Code Duplication    Length = 11-16 lines in 2 locations

modules/search/class.jetpack-search.php 1 location

@@ 1032-1047 (lines=16) @@
1029
				$terms = (array) $terms;
1030
1031
				if ( count( $terms ) && mb_strlen( $tax ) ) {
1032
					switch ( $tax ) {
1033
						case 'post_tag':
1034
							$tax_fld = 'tag.slug';
1035
1036
							break;
1037
1038
						case 'category':
1039
							$tax_fld = 'category.slug';
1040
1041
							break;
1042
1043
						default:
1044
							$tax_fld = 'taxonomy.' . $tax . '.slug';
1045
1046
							break;
1047
					}
1048
1049
					foreach ( $terms as $term ) {
1050
						$parser->add_filter( array(

modules/related-posts/jetpack-related-posts.php 1 location

@@ 902-912 (lines=11) @@
899
		if ( ! empty( $args['has_terms'] ) ) {
900
			foreach( (array)$args['has_terms'] as $term ) {
901
				if ( mb_strlen( $term->taxonomy ) ) {
902
					switch ( $term->taxonomy ) {
903
						case 'post_tag':
904
							$tax_fld = 'tag.slug';
905
							break;
906
						case 'category':
907
							$tax_fld = 'category.slug';
908
							break;
909
						default:
910
							$tax_fld = 'taxonomy.' . $term->taxonomy . '.slug';
911
							break;
912
					}
913
					$filters[] = array( 'term' => array( $tax_fld => $term->slug ) );
914
				}
915
			}