From f3a9a26c44e26c0044e1b475d006899fe13e4fba Mon Sep 17 00:00:00 2001 From: Anagh Padmanabhan Date: Thu, 28 Sep 2017 10:30:32 +0530 Subject: [PATCH] Add website title to story meta --- src/Quintype/Seo/Story.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Quintype/Seo/Story.php b/src/Quintype/Seo/Story.php index 9e00c6a..2af1f46 100644 --- a/src/Quintype/Seo/Story.php +++ b/src/Quintype/Seo/Story.php @@ -14,7 +14,7 @@ public function prepareTags() { if (sizeof($this->story) > 0) { return [ - 'title' => trim($this->getTitle()), + 'title' => trim($this->getTitle() . ' | '. $this->config['title']), 'description' => trim($this->getDescription()), 'keywords' => trim($this->getKeywords(["stories" => $this->story])), 'news_keywords' => trim($this->getKeywords(["stories" => $this->story])),