type ) || ! in_array( $data->type, array( 'rich', 'video' ), true ) ) { return $html; } // If there's no HTML in the data, we can't help. if ( empty( $data->html ) || ! is_string( $data->html ) ) { return $html; } // Try to get ActivityPub representation. $activitypub_html = get_embed_html( $url ); if ( ! $activitypub_html ) { return $html; } // Return our safer ActivityPub embed HTML. return $activitypub_html; } }