Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shanutthankachan/047b2f2923d496a02eb5 to your computer and use it in GitHub Desktop.
Save shanutthankachan/047b2f2923d496a02eb5 to your computer and use it in GitHub Desktop.
<?php get_header(); ?>
<div class="row">
<div id="content">
<h1>Main Area - body</h1>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<h5>Posted on <?php the_time('F jS, Y') ?></h5>
<p><?php the_content(__('(more...)')); ?></p>
<hr> <?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment