posts[] = $post; return $post; } public function cleanup() { $this->deletePosts(); } private function deletePosts() { foreach ($this->posts as $post) { wp_delete_post($post->ID, true); } } }