doujieju0397 2016-08-05 04:54 采纳率: 0%
浏览 17
已采纳

循环博客帖子按SilverStripe上的类别过滤

I'm working on a SilverStripe site and have installed the blog module.

I have my blog set up with multiple categories such as News, Events, Announcements, Photo Galleries, etc.

The problem I run into is that I want to showcase the latest blog post (title, image, some of the content) of each category on my front page.

I can easily loop the blog post using this solution: http://www.silverstripe.org/community/forums/blog-module-forum/show/102585?start=8

/mysite/code/Page.php

class Page_Controller extends ContentController {
    public function latestBlog($num = 3) {
        return BlogPost::get()
                ->sort('PublishDate', 'desc')
                ->limit($num);
    }
}

/themes/simple/templates/Page.ss

<ol>
<% loop $latestBlog %>
    <li>$Title</li>
    <p>$Content</p>
<% end_loop %>
</ol>

But I can't figure out how to loop while filtering by a category. For example something like this logic:

return BlogPost::get()
        ->FILTER('Category', 'News')
        ->sort('PublishDate', 'desc')
        ->limit($num);

The idea is to loop News and code it a certain way so it looks different on the front page, then loop Photo Galleries.

I can't find anything that works on how to do this.

Is this possible to do?

  • 写回答

1条回答 默认 最新

  • duanbushi1867 2016-08-05 05:09
    关注

    You want to use the relation method on DataList: http://api.silverstripe.org/3.3/class-DataList.html#_relation

    return BlogCategory::get()
        ->filter('Title', 'News')
        ->relation('BlogPosts')
        ->sort('PublishDate', 'DESC')
        ->limit($num);
    

    This will return a list of blog posts filtered by the defined category (news).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了