chibimaddy
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Hacks
In reply to: Modified Category Page Now Only Shows 1 PostResoved.
Forum: Hacks
In reply to: Modified Category Page Now Only Shows 1 PostThank you again. I know my stuff if very messy. I don’t really know what I’m doing and I’m sure it shows ??
Forum: Hacks
In reply to: Modified Category Page Now Only Shows 1 PostJust a quick mention. Is there some way preview before you post? p.s. found the edit button ??
Forum: Hacks
In reply to: Modified Category Page Now Only Shows 1 PostThank you ?? I didn’t quite understand what to do, so I futzed until I got it to work.
I needed to change the “if” to “while”,
and the “endif” to “endwhile” and then I needed to wrap the whole thing in
<?php if ( have_posts() ) : the_post();?>
—–
<?php endif; ?>
Here’s the updated code that works ?? YAY! TYSM
<?php get_header(); ?> <div id="content"> <?php if ( have_posts() ) : the_post();?> <?php the_post(); ?> <?php rewind_posts(); ?> <?php while ( have_posts() ) : the_post();?> <a>" target="_top" title="<?php the_title();?>"> <?php if ( has_post_thumbnail() ) { $thumbnail_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'thumbnail' ); echo '<img src="' . $thumbnail_url[0] . '">'; } ?> </a> <a>" target="_top" title="<?php the_title();?>"> <?php the_title();?></a> <?php get_template_part ('entry','summary');?> <?php endwhile; ?> </div><!--end "content"--> <?php else : echo '<div id="empty" style="margin:25px auto;text-align:center;"><img src="../2014/~images/2015ChunkUnavailable.png"></div>'; ?> <?php endif; ?> <div id="pagination"> <?php wp_pagination(); ?> </div> <?php get_footer(); ?>
Forum: Hacks
In reply to: Modified Category Page Now Only Shows 1 PostHere is a link to another category that uses the same template, but this one has NO pages in the category:
https://chibitude.com/adopt/?cat=249Forum: Fixing WordPress
In reply to: I've Copied a Theme and no Menus don't workYou are fabulous! Thank you so much!
Viewing 6 replies - 1 through 6 (of 6 total)