Forked from matthiaspabst/wordpress-post-thumbnail-grid-style.css
Created
June 29, 2017 21:51
-
-
Save elpuas/5ec3a1a1d5872ecbaa8e3ee278b0cca3 to your computer and use it in GitHub Desktop.
WordPress page template for a post thumbnail grid
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
/* Post Thumbnail Grid */ | |
.gridcontainer h2 a{color: #333; font-size: 13px;} | |
.gridcontainer .griditemleft{float: left; width: 150px; margin: 0 30px 20px 0;} | |
.gridcontainer .griditemright{float: left; width: 150px;} | |
.gridcontainer .postimage{margin: 0 0 5px 0;} | |
.gridcontainer .postimage-title {text-align: center;} |
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
<?php | |
/* | |
Template Name: Thumbnails | |
*/ | |
?> | |
<?php get_header(); ?> | |
<div class="gridcontainer"> | |
<h1 class="entry-title"><?php the_title(); ?></h1> | |
<?php | |
// Grid Parameters | |
$counter = 1; // Start the counter | |
$grids = 5; // Grids per row | |
$titlelength = 20; // Length of the post titles shown below the thumbnails | |
// The Query | |
$args=array ( | |
'post_type' => 'post', | |
'posts_per_page' => -1 | |
); | |
$the_query = new WP_Query($args); | |
// The Loop | |
while ( $the_query->have_posts() ) : | |
$the_query->the_post(); | |
// Show all columns except the right hand side column | |
if($counter != $grids) : | |
?> | |
<div class="griditemleft"> | |
<div class="postimage"> | |
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail(); ?></a> | |
</div><!-- .postimage --> | |
<h2 class="postimage-title"> | |
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> | |
<?php if (mb_strlen($post->post_title) > $titlelength) | |
{ echo mb_substr(the_title($before = '', $after = '', FALSE), 0, $titlelength) . ' ...'; } | |
else { the_title(); } ?> | |
</a> | |
</h2> | |
</div><!-- .griditemleft --> | |
<?php | |
// Show the right hand side column | |
elseif($counter == $grids) : | |
?> | |
<div class="griditemright"> | |
<div class="postimage"> | |
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail(); ?></a> | |
</div><!-- .postimage --> | |
<h2 class="postimage-title"> | |
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> | |
<?php if (mb_strlen($post->post_title) > $titlelength) | |
{ echo mb_substr(the_title($before = '', $after = '', FALSE), 0, $titlelength) . ' ...'; } | |
else { the_title(); } ?> | |
</a> | |
</h2> | |
</div><!-- .griditemright --> | |
<div class="clear"></div> | |
<?php | |
$counter = 0; | |
endif; | |
$counter++; | |
endwhile; | |
wp_reset_postdata(); | |
?> | |
</div><!-- .gridcontainer --> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment