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
                
                
                    
                                                
                                                    
                                |  | @@ 1078-1093 (lines=16) @@ | 
                                                            
                                    | 1075 |  | 				$terms = (array) $terms; | 
                                                            
                                    | 1076 |  |  | 
                                                            
                                    | 1077 |  | 				if ( count( $terms ) && mb_strlen( $tax ) ) { | 
                                                            
                                    | 1078 |  | 					switch ( $tax ) { | 
                                                            
                                    | 1079 |  | 						case 'post_tag': | 
                                                            
                                    | 1080 |  | 							$tax_fld = 'tag.slug'; | 
                                                            
                                    | 1081 |  |  | 
                                                            
                                    | 1082 |  | 							break; | 
                                                            
                                    | 1083 |  |  | 
                                                            
                                    | 1084 |  | 						case 'category': | 
                                                            
                                    | 1085 |  | 							$tax_fld = 'category.slug'; | 
                                                            
                                    | 1086 |  |  | 
                                                            
                                    | 1087 |  | 							break; | 
                                                            
                                    | 1088 |  |  | 
                                                            
                                    | 1089 |  | 						default: | 
                                                            
                                    | 1090 |  | 							$tax_fld = 'taxonomy.' . $tax . '.slug'; | 
                                                            
                                    | 1091 |  |  | 
                                                            
                                    | 1092 |  | 							break; | 
                                                            
                                    | 1093 |  | 					} | 
                                                            
                                    | 1094 |  |  | 
                                                            
                                    | 1095 |  | 					foreach ( $terms as $term ) { | 
                                                            
                                    | 1096 |  | 						$parser->add_filter( array( |