register_meta(); add_action( 'delete_attachment', [ $this, 'delete_video' ] ); } /** * Register meta * * @since 1.15.0 */ public function register_meta(): void { register_meta( 'post', self::OPTIMIZED_ID_POST_META_KEY, [ 'sanitize_callback' => 'absint', 'type' => 'integer', 'description' => __( 'ID of optimized video.', 'web-stories' ), 'show_in_rest' => true, 'default' => 0, 'single' => true, 'object_subtype' => 'attachment', ] ); } /** * Deletes associated meta data when a video is deleted. * * @since 1.26.0 * * @param int $attachment_id ID of the attachment to be deleted. */ public function delete_video( int $attachment_id ): void { delete_metadata( 'post', 0, self::OPTIMIZED_ID_POST_META_KEY, $attachment_id, true ); } /** * Act on plugin uninstall. * * @since 1.26.0 */ public function on_plugin_uninstall(): void { delete_post_meta_by_key( self::OPTIMIZED_ID_POST_META_KEY ); } }