Hi,
I try to call recent Blog posts filtered by specific category, Through these code in my HomePage:
public function CallCategory($limit = 3) {
return BlogPost::get()->filter(array(
'Categories' => 'Cultural'
))->limit($limit)->sort('LastEdited');
}
but it doesn't work.
is there any way to call posts filtered by category?
Thanks,