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
|
@@ 1121-1136 (lines=16) @@
|
| 1118 |
|
$terms = (array) $terms; |
| 1119 |
|
|
| 1120 |
|
if ( count( $terms ) && mb_strlen( $tax ) ) { |
| 1121 |
|
switch ( $tax ) { |
| 1122 |
|
case 'post_tag': |
| 1123 |
|
$tax_fld = 'tag.slug'; |
| 1124 |
|
|
| 1125 |
|
break; |
| 1126 |
|
|
| 1127 |
|
case 'category': |
| 1128 |
|
$tax_fld = 'category.slug'; |
| 1129 |
|
|
| 1130 |
|
break; |
| 1131 |
|
|
| 1132 |
|
default: |
| 1133 |
|
$tax_fld = 'taxonomy.' . $tax . '.slug'; |
| 1134 |
|
|
| 1135 |
|
break; |
| 1136 |
|
} |
| 1137 |
|
|
| 1138 |
|
foreach ( $terms as $term ) { |
| 1139 |
|
$parser->add_filter( array( |