import_wp_object($wp_category); } } function import_wp_object($wp_category) { $this->id = (int) $wp_category->term_id; $this->slug = $wp_category->slug; $this->title = $wp_category->name; $this->description = $wp_category->description; $this->parent = (int) $wp_category->parent; $this->post_count = (int) $wp_category->count; } } ?>