Code Duplication    Length = 11-16 lines in 2 locations

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

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

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

@@ 1097-1112 (lines=16) @@
1094
				$terms = (array) $terms;
1095
1096
				if ( count( $terms ) && mb_strlen( $tax ) ) {
1097
					switch ( $tax ) {
1098
						case 'post_tag':
1099
							$tax_fld = 'tag.slug';
1100
1101
							break;
1102
1103
						case 'category':
1104
							$tax_fld = 'category.slug';
1105
1106
							break;
1107
1108
						default:
1109
							$tax_fld = 'taxonomy.' . $tax . '.slug';
1110
1111
							break;
1112
					}
1113
1114
					foreach ( $terms as $term ) {
1115
						$parser->add_filter( array(