Jump to content

Recommended Posts

Posted

Hi!

Dumb question again here (%

I have pages with different count of images.

How can I output images with limit=3 for example?

Posted

Hi there!

The following code grabs first three images from the field "images"

$firstThree = $page->images->slice(0, 3);

foreach ($firstThree as $i) {
	// Output goes here
}
  • Like 4

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...