diff --git a/code/model/BlogTag.php b/code/model/BlogTag.php index 0afafa6..b1ff547 100644 --- a/code/model/BlogTag.php +++ b/code/model/BlogTag.php @@ -42,6 +42,17 @@ class BlogTag extends DataObject implements CategorisationObject { 'URLSegmentExtension', ); + /** + * @return DataList + */ + public function BlogPosts() { + $blogPosts = parent::BlogPosts(); + + $this->extend("updateGetBlogPosts", $blogPosts); + + return $blogPosts; + } + /** * {@inheritdoc} */