tooth-paste Posted February 8, 2016 Share Posted February 8, 2016 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> Link to comment Share on other sites More sharing options...
kongondo Posted February 8, 2016 Share Posted February 8, 2016 I am too lazy to type code... Have a look at the examples found here (second example there has 6 random images being returned) https://processwire.com/talk/topic/328-grabbing-a-random-image/ Link to comment Share on other sites More sharing options...
pwired Posted February 8, 2016 Share Posted February 8, 2016 // grab and output a random image Just put this in each grid cell: $image = $page->images->getRandom(); if($image) echo "<img src='$image->url'>"; Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now