【发布时间】:2017-01-01 07:54:08
【问题描述】:
我已经在谷歌上搜索了大约 2 个小时,但找不到这个问题的答案。我正在尝试按作者/会员 ID 过滤博客文章(使用 silverstripe-blog 模块)。到目前为止,我得到了:
public function MyRecentPosts() {
$posts = BlogPost::get()
->sort('PublishDate','desc')
->limit(2);
return $posts;
}
显然,它只返回最近的博客文章。我不确定我是否了解如何将 Blog Post 表与 BlogPost_Authors 表关联起来......
任何建议将不胜感激。
【问题讨论】:
标签: php silverstripe