Falcon_Connector_WordPress::get_comment_content_as_html PHP Метод

get_comment_content_as_html() защищенный Метод

protected get_comment_content_as_html ( $comment )
    protected function get_comment_content_as_html($comment)
    {
        $content = apply_filters('comment_text', get_comment_text($comment));
        $text = $content . "\n\n" . $this->get_html_footer(get_comment_link($comment));
        /**
         * Filter the email content
         *
         * Use this to add tracking codes, metadata, etc
         *
         * @param string $text HTML content
         * @param WP_Post $post Post the content is generated from
         */
        return apply_filters('falcon.connector.wordpress.comment_content_html', $text, $comment);
    }