Skip to content

Instantly share code, notes, and snippets.

@noeltock
Created October 9, 2012 13:41
Show Gist options
  • Select an option

  • Save noeltock/3858882 to your computer and use it in GitHub Desktop.

Select an option

Save noeltock/3858882 to your computer and use it in GitHub Desktop.
header
<!-- Grid image system -->
<div id="ri-grid" class="ri-grid ri-grid-size-3">
<ul>
<?php
/**
* Images are saved 1.jpg to 50.jpg, looping their display.
*/
$i = 1;
$directory = get_template_directory_uri();
while ( $i <= 50 ) {
echo '<li><div class="grid-image-wrap"><img src="' . $directory . '/images/thumbs/' . $i . '.jpg" alt="Decorative Image ' . $i . '"/></div></li>';
$i++;
}
?>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment