twitter_image = $twitter_image; } /** * Adds an image to the list by image ID. * * @param int $image_id The image ID to add. * * @return void */ public function add_image_by_id( $image_id ) { $attachment = $this->twitter_image->get_by_id( $image_id ); if ( $attachment ) { $this->add_image( $attachment ); } } }