Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.10 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.     <div class="main">
  4.         <div class="container">
  5.             <?php if(have_posts()) : ?> <!--Checks to see if there are posts-->
  6.                 <?php while (have_posts()): the_post (); ?>
  7.                     <article class="post">
  8.                         <h3><a href="<?php the_permalink()?>"><!--Creates link to the post-->
  9.                             <?php the_title(); ?>
  10.                         </a>
  11.                         </h3><!--Displays post title in headline-->
  12.                         <div class="meta">Created By <?php the_author(); ?> on <?php the_date(); ?></div><!--Displays author of post and date posted-->
  13.                         <?php if (has_post_thumbnail()) : ?>  <!--Checks to see if the post has a thumbnail-->
  14.                             <div class="post_thumbnail"><?php the_post_thumbnail(); ?>
  15.                         </div> <!--Displays post thumbnail-->
  16.                         <?php the_content(); ?> <!-- Displays the post content-->
  17.                         <br>
  18.                         <h3><a class="button" href="<?php the_permalink()?>"><!--Creates link to the post-->
  19.                             Read More...
  20.                         </a>
  21.                     </article>
  22.                 <?php endwhile; ?>
  23.  
  24.                 <?php else: ?>
  25.                     <?php echo wpautop('Sorry, No posts were found'); ?>
  26.  
  27.             <?php endif; ?>
  28.         </div>
  29.     </div> 
  30. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement