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
|
@@ 1087-1102 (lines=16) @@
|
| 1084 |
|
$terms = (array) $terms; |
| 1085 |
|
|
| 1086 |
|
if ( count( $terms ) && mb_strlen( $tax ) ) { |
| 1087 |
|
switch ( $tax ) { |
| 1088 |
|
case 'post_tag': |
| 1089 |
|
$tax_fld = 'tag.slug'; |
| 1090 |
|
|
| 1091 |
|
break; |
| 1092 |
|
|
| 1093 |
|
case 'category': |
| 1094 |
|
$tax_fld = 'category.slug'; |
| 1095 |
|
|
| 1096 |
|
break; |
| 1097 |
|
|
| 1098 |
|
default: |
| 1099 |
|
$tax_fld = 'taxonomy.' . $tax . '.slug'; |
| 1100 |
|
|
| 1101 |
|
break; |
| 1102 |
|
} |
| 1103 |
|
|
| 1104 |
|
foreach ( $terms as $term ) { |
| 1105 |
|
$parser->add_filter( array( |