Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.24 KB | None | 0 0
  1. <?php if ( have_posts() ) : ?>
  2. <?php while ( have_posts() ) : the_post(); ?>
  3.   <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  4.     <div class="post-header">
  5.        <div class="date"><?php the_time( 'M j y' ); ?></div>
  6.        <h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  7.        <div class="author"><?php the_author(); ?></div>
  8.     </div><!--end post header-->
  9.     <div class="entry clear">
  10.        <?php if ( function_exists( 'add_theme_support' ) ) the_post_thumbnail(); ?>
  11.        <?php the_content(); ?>
  12.        <?php edit_post_link(); ?>
  13.        <?php wp_link_pages(); ?> </div>
  14.     <!--end entry-->
  15.     <div class="post-footer">
  16.        <div class="comments"><?php comments_popup_link( 'Leave a Comment', '1 Comment', '% Comments' ); ?></div>
  17.     </div><!--end post footer-->
  18.     </div><!--end post-->
  19. <?php endwhile; /* rewind or continue if all posts have been fetched */ ?>
  20.     <div class="navigation index">
  21.        <div class="alignleft"><?php next_posts_link( 'Older Entries' ); ?></div>
  22.        <div class="alignright"><?php previous_posts_link( 'Newer Entries' ); ?></div>
  23.     </div><!--end navigation-->
  24. <?php else : ?>
  25. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement