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
|
@@ 876-886 (lines=11) @@
|
873 |
|
if ( ! empty( $args['has_terms'] ) ) { |
874 |
|
foreach( (array)$args['has_terms'] as $term ) { |
875 |
|
if ( mb_strlen( $term->taxonomy ) ) { |
876 |
|
switch ( $term->taxonomy ) { |
877 |
|
case 'post_tag': |
878 |
|
$tax_fld = 'tag.slug'; |
879 |
|
break; |
880 |
|
case 'category': |
881 |
|
$tax_fld = 'category.slug'; |
882 |
|
break; |
883 |
|
default: |
884 |
|
$tax_fld = 'taxonomy.' . $term->taxonomy . '.slug'; |
885 |
|
break; |
886 |
|
} |
887 |
|
$filters[] = array( 'term' => array( $tax_fld => $term->slug ) ); |
888 |
|
} |
889 |
|
} |