remove from code coverage and fix query
This commit is contained in:
parent
22b95c91c3
commit
9bfedbe0c9
|
@ -105,14 +105,12 @@ class ComicPressDBInterface {
|
||||||
*/
|
*/
|
||||||
function get_next_post($categories = null, $override_post = null) { return $this->get_adjacent_post($categories, true, $override_post); }
|
function get_next_post($categories = null, $override_post = null) { return $this->get_adjacent_post($categories, true, $override_post); }
|
||||||
|
|
||||||
// @codeCoverageIgnoreEnd
|
|
||||||
|
|
||||||
function get_parent_child_category_ids() {
|
function get_parent_child_category_ids() {
|
||||||
global $wpdb;
|
global $wpdb;
|
||||||
|
|
||||||
$parent_child_categories = array();
|
$parent_child_categories = array();
|
||||||
|
|
||||||
$result = $wpdb->get_results("SELECT term_id, parent FROM $wpdb->term_taxonomy", ARRAY_A);
|
$result = $wpdb->get_results("SELECT term_id, parent FROM $wpdb->term_taxonomy WHERE `taxonomy` = 'category'", ARRAY_A);
|
||||||
if (!empty($result)) {
|
if (!empty($result)) {
|
||||||
foreach ($result as $row) {
|
foreach ($result as $row) {
|
||||||
$parent_child_categories[$row['term_id']] = $row['parent'];
|
$parent_child_categories[$row['term_id']] = $row['parent'];
|
||||||
|
@ -121,4 +119,6 @@ class ComicPressDBInterface {
|
||||||
|
|
||||||
return $parent_child_categories;
|
return $parent_child_categories;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// @codeCoverageIgnoreEnd
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue