Hello,
after I’m quite new in the deal with Kirby cms and still am learning to learn I need your help again.
Can someone help me and tell me how to limit the number of articles.
thanks for your help
tomix
Hello,
after I’m quite new in the deal with Kirby cms and still am learning to learn I need your help again.
Can someone help me and tell me how to limit the number of articles.
thanks for your help
tomix
There is a limit()
method. Suppose you want to get 5 children of the blog page:
$limitedArticles = page('blog')->children()->limit(5);
Many Thanks for your Help