Advertisement
wclendining

Noah Rows home.php

Jun 20th, 2015
434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.57 KB | None | 0 0
  1.   <?php /* Template Name: Custom home page */ ?>
  2.  
  3.   <?php get_header(); ?>
  4.  
  5.    <div id="main">
  6.       <article>
  7.         <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  8.                 <?php the_content(__('Read more'));?>
  9.                 <footer id="pagefoot">
  10.                    last updated: <?php the_modified_date(); ?>
  11.                 </footer>
  12.                 <?php endwhile; else: ?>
  13.                 <p><?php _e('Sorry, no pages or posts matched your request.'); ?></p>
  14.         <?php endif; ?>
  15.         </article>
  16.   </div>
  17.  
  18.   <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement