Created
October 9, 2012 13:41
-
-
Save noeltock/3858882 to your computer and use it in GitHub Desktop.
header
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 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