lbrypress/classes/LBRY_Speech_Parser.php

20 lines
424 B
PHP
Raw Normal View History

<?php
/**
* Parses post markup in order to use specified spee.ch url for assets
*
* @package LBRYPress
*/
class LBRY_Speech_Parser
{
2018-09-14 02:34:11 +02:00
public function rewrite($html)
{
2018-09-14 02:34:11 +02:00
// TODO: Completely fix this, as its super slow. Looking at cdn_enabler for ideas
$speech_url = get_option(LBRY_SETTINGS)[LBRY_SPEECH];
$html = str_replace(site_url(), $speech_url, $html);
return $html;
}
}