posts[] = $post; return $post; } /** * Method for cleaning up after the test. */ public function cleanup(): void { $this->delete_posts(); } /** * Delete created posts. */ private function delete_posts(): void { foreach ( $this->posts as $post ) { wp_delete_post( $post->ID, true ); } } }