Jump to content

Recommended Posts

Posted

On my homepage I would like to make a Foundation grid with random clickable images. So every time a person visits the homepage different images come up. The images could be children of a parent page. The grid is 

Please give examples with code. This is what I'am now using.

<a href='{$page->url}'><img src='{$page->thumb->first()->url}' alt='' /></a>

post-2727-0-76046100-1454930251_thumb.jp

Posted
// grab and output a random image

Just put this in each grid cell:

$image = $page->images->getRandom();
if($image) echo "<img src='$image->url'>";     

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...