/ Published in: PHP
archives.php
Expand |
Embed | Plain Text
<?php get_header(); ?> <div id="content"> <h1 class="pages"><?php single_cat_title(); ?></h1> <div class="grid_8"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div style="height:140px;" > <div class="tutorial-thumb post-thumb" > <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a></div> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_excerpt(); ?> </div> <?php endwhile; endif; wp_reset_query(); ?> <?php wp_pagenavi(); ?> </div> <?php get_sidebar(); ?> </div> <div class="clear"></div> <?php get_footer(); ?>
You need to login to post a comment.
