Images in Categories
-
Has anyone ever had a problem with images in posts not showing up when you click on one of the categories in the sidebar? What was your solution?
The theme I’m using has a “Show excerpt” option, but I’ve disabled it.
Still, whenever I click on one of the categories on my sidebar it takes me to the posts but they are all in italics and the images do not show. I’ve checked everywhere in my code for “the_excerpt” in “archive” but nothing.
I’m using the “Fazio” theme. Below is the code in “Archive.php”:
<?php get_header(); ?> <div id="pagewrap"> <div id="page"> <div id="content"> <h2 class="page_note"> <?php if(is_day()) : ?> <?php printf(__('Daily Archives: <span>%s</span>', 'fazio'), get_the_date()); ?> <?php elseif(is_month()) : ?> <?php printf(__('Monthly Archives: <span>%s</span>', 'fazio'), get_the_date('F Y')); ?> <?php elseif(is_year()) : ?> <?php printf(__('Yearly Archives: <span>%s</span>', 'fazio'), get_the_date('Y')); ?> <?php else : ?> <?php _e('Blog Archives', 'fazio'); ?> <?php endif; ?> </h2> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_content(); ?> <?php get_template_part('dry/post'); ?> <?php endwhile; ?> <?php pagination(); ?> <?php else : ?> <p><?php get_template_part('dry/404'); ?></p> <?php endif; ?> </div><!-- end content --> <?php get_sidebar(); ?> </div><!-- end page --> </div><!-- end pagewrap --> <?php get_footer(); ?>
If anyone out there could tell me their solution I would be most grateful. This thing is driving me crazy.
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Images in Categories’ is closed to new replies.