Advertisement
sueheap23

code

Jun 23rd, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div id="content" class="grid_17 suffix_1">
  3. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  4. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  5. <header>
  6. <h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  7. <div class="post-meta">
  8. <div class="fleft">Posted in: <?php the_category(', ') ?> | <time datetime="<?php the_time('Y-m-d\TH:i'); ?>"><?php the_time('F j, Y'); ?> at <?php the_time() ?></time> , by <?php the_author_posts_link() ?></div>
  9. <div class="fright"><?php comments_popup_link('No comments', 'One comment', '% comments', 'comments-link', 'Comments are closed'); ?></div>
  10. </div><!--.post-meta-->
  11. </header>
  12. <?php echo '<div class="featured-thumbnail">'; the_post_thumbnail(); echo '</div>'; ?>
  13. <div class="post-content">
  14. <div class="excerpt"><?php $excerpt = get_the_excerpt(); echo my_string_limit_words($excerpt,50);?></div>
  15. <a href="<?php the_permalink() ?>" class="button">Read more</a>
  16.  
  17.  
  18.  
  19. &lt;?php if( is_home() ) : ?&gt;
  20. &lt;div class=&quot;bottom-banner&quot;&gt;<img src="images/bottombanner.png" alt="banner" />&lt;/div&gt;
  21. &lt;?php endif; ?&gt;
  22.  
  23.  
  24.  
  25.  
  26.  
  27. </div>
  28. <footer>
  29. <?php the_tags('Tags: ', ', ', ''); ?> <?php edit_post_link('Edit', '', ''); ?>
  30. </footer>
  31. </article>
  32.  
  33. <?php endwhile; else: ?>
  34. <div class="no-results">
  35. <p><strong>There has been an error.</strong></p>
  36. <p>We apologize for any inconvenience, please <a href="<?php bloginfo('url'); ?>/" title="<?php bloginfo('description'); ?>">return to the home page</a> or use the search form below.</p>
  37. <?php get_search_form(); ?> <!-- outputs the default Wordpress search form-->
  38. </div><!--noResults-->
  39. <?php endif; ?>
  40.  
  41. <?php if ( $wp_query->max_num_pages > 1 ) : ?>
  42. <nav class="oldernewer">
  43. <div class="older">
  44. <?php next_posts_link('&laquo; Older Entries') ?>
  45. </div><!--.older-->
  46. <div class="newer">
  47. <?php previous_posts_link('Newer Entries &raquo;') ?>
  48. </div><!--.newer-->
  49. </nav><!--.oldernewer-->
  50. <?php endif; ?>
  51.  
  52. </div><!--#content-->
  53. <?php get_sidebar(); ?>
  54. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement