Craft\SeomaticVariable::render PHP Method

render() public method

* -------------------------------------------------------------------------------- Render the SEOmatic template --------------------------------------------------------------------------------
public render ( $templatePath = "", $metaVars = null )
    function render($templatePath = "", $metaVars = null)
    {
        if ($metaVars) {
            $result = craft()->seomatic->render($templatePath, $metaVars);
        } else {
            $result = craft()->seomatic->render($templatePath);
        }
        return rtrim($result);
    }