Hi Steve,
I’m actually running a child theme and can modify the code, I’m just not sure how to modify it.
Right now, I see this in the php (on the parent theme for the archive page) which seems to look like most of what I find on the internet that is correct. My understanding of php is at toddler level. Does anything incorrect jump out here?
Thanks!
<div class=”twelve columns”>
<?php
$i = 1;
if(have_posts()) : while(have_posts()) : the_post();
$thumbnail = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );?>
<div <?php post_class(‘post’);?>>
<?php get_template_part(‘content’);?>
</div> <!– end post –>
<?php endwhile;
get_template_part(‘includes/pagination’);
endif; wp_reset_query();?>
</div> <!– end twelve columns –>