Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php /* Template Name: Custom home page */ ?>
- <?php get_header(); ?>
- <div id="main">
- <article>
- <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
- <?php the_content(__('Read more'));?>
- <footer id="pagefoot">
- last updated: <?php the_modified_date(); ?>
- </footer>
- <?php endwhile; else: ?>
- <p><?php _e('Sorry, no pages or posts matched your request.'); ?></p>
- <?php endif; ?>
- </article>
- </div>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement