is_showing_category_list() ) { $cat_id = $this->__get_term_id( $term_name ); if ( $cat_id != 0 ) { return $term_name . ' (ID: ' . $cat_id . ') '; } else { return $term_name; } } return $term_name; } public function is_showing_category_list() { $screen = get_current_screen(); if ( $screen->id == 'edit-product_cat' || $screen->id == 'edit-category' ) { return true; } return; } public function __get_term_id( $term_name ) { $screen = get_current_screen(); if ( $screen->id == 'edit-category' ) { return get_cat_ID( $term_name ); } if ( $screen->id == 'edit-product_cat' ) { $_term = get_term_by( 'name', $term_name, 'product_cat' ); if ( $_term ) { return $_term->term_id; } } } } new WP_SHOW_CAT_IDS_MAIN();