the thumbnails i am looking at are my blog posts in chronological view, this page:
https://www.artbyherbie.com/latest-articles/page/2/
my index.php:
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
get_header(); ?>
<div id="content" class="narrowcolumn" role="main">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<div class="post_date">
<span class="day"><?php the_time('d') ?></span><br />
<span class="month"><?php the_time('M') ?></span><br />
<span class="year"><?php the_time('Y') ?></span>
</div>
<div class="post_content">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="comm"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></div>
<div class="entry">
<?php the_post_thumbnail('gallery-thumbnail') ?><?php the_excerpt('Read the rest of this entry »'); ?>
</div>
<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> </p>
<div class="read_more"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">read more</a></div>
</div>
</div>
<?php endwhile; ?>
<?php if(function_exists('wp_pagenavi')) { ?>
<div class="new_pagination">
<?php wp_pagenavi(); ?>
</div>
<?php
}
else {
?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php } ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
<?php
include
(
"sidebar2.php"
)
; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>