Merge branch 'develop' of https://github.com/tainacan/tainacan into develop
This commit is contained in:
commit
209dff3cfc
|
@ -649,7 +649,7 @@ class Elastic_Press {
|
|||
$taxonomy_slug = $description_types[2];
|
||||
$taxonomy_id = Repositories\Taxonomies::get_instance()->get_id_by_db_identifier($taxonomy_slug);
|
||||
foreach ($aggregation[$key]['buckets'] as $term) {
|
||||
$term_id = $term['key'];
|
||||
$term_id = intval($term['key']);
|
||||
$term_object = \Tainacan\Repositories\Terms::get_instance()->fetch($term_id, $taxonomy_slug);
|
||||
$count_query = $wpdb->prepare("SELECT COUNT(term_id) FROM $wpdb->term_taxonomy WHERE parent = %d", $term_id);
|
||||
$total_children = $wpdb->get_var($count_query);
|
||||
|
@ -727,13 +727,13 @@ class Elastic_Press {
|
|||
$buckets = ($has_include == false ? $aggregation['buckets'] : $aggregation[$key]['buckets']);
|
||||
foreach ($buckets as $term) {
|
||||
if ($has_include) {
|
||||
$term_id = $term['key'];
|
||||
$term_id = intval($term['key']);
|
||||
$doc_count = $term['doc_count'];
|
||||
} else {
|
||||
$term_id = $term['key'][$key];
|
||||
$term_id = intval($term['key'][$key]);
|
||||
$doc_count = $term['doc_count'];
|
||||
}
|
||||
if ($term_id == '') continue;
|
||||
if ($term_id === 0) continue;
|
||||
|
||||
$term_object = \Tainacan\Repositories\Terms::get_instance()->fetch($term_id, $taxonomy_slug);
|
||||
$count_query = $wpdb->prepare("SELECT COUNT(term_id) FROM $wpdb->term_taxonomy WHERE parent = %d", $term_id);
|
||||
|
|
Loading…
Reference in New Issue