Created
February 17, 2016 00:58
-
-
Save Tom-Alexander/173511bbc7b1a763d9f5 to your computer and use it in GitHub Desktop.
silverstripe blog suggested posts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BlogPost::get() | |
->filter(['ParentID' => $this->owner->ParentID]) | |
->leftJoin('BlogPost_Categories', 'BlogPost.ID = BlogPost_Categories.BlogPostID') | |
->where( | |
'BlogCategoryID IN ( | |
SELECT BlogCategoryID FROM "BlogPost" | |
LEFT JOIN BlogPost_Categories ON BlogPost.ID = BlogPost_Categories.BlogPostID | |
WHERE BlogPost.ID = ' . $this->owner->ID . ')') | |
->exclude(['ID' => $this->owner->ID]) | |
->sort('RAND()') | |
->limit($length); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment