modules/related-posts/jetpack-related-posts.php 1 location
                
                
                    
                                                
                                                    
                                |  | @@ 679-689 (lines=11) @@ | 
                                                            
                                    | 676 |  | 		if ( ! empty( $args['has_terms'] ) ) { | 
                                                            
                                    | 677 |  | 			foreach( (array)$args['has_terms'] as $term ) { | 
                                                            
                                    | 678 |  | 				if ( mb_strlen( $term->taxonomy ) ) { | 
                                                            
                                    | 679 |  | 					switch ( $term->taxonomy ) { | 
                                                            
                                    | 680 |  | 						case 'post_tag': | 
                                                            
                                    | 681 |  | 							$tax_fld = 'tag.slug'; | 
                                                            
                                    | 682 |  | 							break; | 
                                                            
                                    | 683 |  | 						case 'category': | 
                                                            
                                    | 684 |  | 							$tax_fld = 'category.slug'; | 
                                                            
                                    | 685 |  | 							break; | 
                                                            
                                    | 686 |  | 						default: | 
                                                            
                                    | 687 |  | 							$tax_fld = 'taxonomy.' . $term->taxonomy . '.slug'; | 
                                                            
                                    | 688 |  | 							break; | 
                                                            
                                    | 689 |  | 					} | 
                                                            
                                    | 690 |  | 					$filters[] = array( 'term' => array( $tax_fld => $term->slug ) ); | 
                                                            
                                    | 691 |  | 				} | 
                                                            
                                    | 692 |  | 			} | 
                                                                        
                 
                                                            
                    
modules/search/class.jetpack-search.php 1 location
                
                
                    
                                                
                                                    
                                |  | @@ 642-657 (lines=16) @@ | 
                                                            
                                    | 639 |  | 				$terms = (array) $terms; | 
                                                            
                                    | 640 |  |  | 
                                                            
                                    | 641 |  | 				if ( count( $terms ) && mb_strlen( $tax ) ) { | 
                                                            
                                    | 642 |  | 					switch ( $tax ) { | 
                                                            
                                    | 643 |  | 						case 'post_tag': | 
                                                            
                                    | 644 |  | 							$tax_fld = 'tag.slug'; | 
                                                            
                                    | 645 |  |  | 
                                                            
                                    | 646 |  | 							break; | 
                                                            
                                    | 647 |  |  | 
                                                            
                                    | 648 |  | 						case 'category': | 
                                                            
                                    | 649 |  | 							$tax_fld = 'category.slug'; | 
                                                            
                                    | 650 |  |  | 
                                                            
                                    | 651 |  | 							break; | 
                                                            
                                    | 652 |  |  | 
                                                            
                                    | 653 |  | 						default: | 
                                                            
                                    | 654 |  | 							$tax_fld = 'taxonomy.' . $tax . '.slug'; | 
                                                            
                                    | 655 |  |  | 
                                                            
                                    | 656 |  | 							break; | 
                                                            
                                    | 657 |  | 					} | 
                                                            
                                    | 658 |  |  | 
                                                            
                                    | 659 |  | 					foreach ( $terms as $term ) { | 
                                                            
                                    | 660 |  | 						$filters[] = array( |