Craft\SeomaticService::renderMainEntityOfPage PHP Method

renderMainEntityOfPage() public method

* -------------------------------------------------------------------------------- Render the Main Entity of Page JSON-LD --------------------------------------------------------------------------------
public renderMainEntityOfPage ( $metaVars, $locale, $isPreview = false )
    public function renderMainEntityOfPage($metaVars, $locale, $isPreview = false)
    {
        $htmlText = "";
        if (isset($metaVars['seomaticMainEntityOfPage'])) {
            $this->sanitizeMetaVars($metaVars);
            $htmlText = $this->renderJSONLD($metaVars['seomaticMainEntityOfPage'], $isPreview);
        }
        return $htmlText;
    }