Falcon::convert_html_to_text PHP Method

convert_html_to_text() public static method

Convert the post content to text
public static convert_html_to_text ( string $html ) : string
$html string HTML to convert
return string Text version of the content
    public static function convert_html_to_text($html)
    {
        $converter = new Falcon_Converter($html);
        return $converter->convert();
    }