stripTags( $this->getPost()->getOgType() ); } /** * Retrieve page title * * @return string */ public function getTitle() { return $this->stripTags( $this->getPost()->getOgTitle() ); } /** * Retrieve page short description * * @return string */ public function getDescription() { return $this->stripTags( $this->getPost()->getOgDescription() ); } /** * Retrieve page url * * @return string */ public function getPageUrl() { return $this->stripTags( $this->getPost()->getPostUrl() ); } /** * Retrieve page main image * * @return string | null */ public function getImage() { $image = $this->getPost()->getOgImage(); if (!$image) { $image = $this->getPost()->getFirstImage(); } if ($image) { return $this->stripTags($image); } } }