bartulans
11/24/2017 - 9:38 AM

Get content

Get content

<section id="content" role="main">
  <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
      <section class="entry-content">
        <?php the_content(); ?>
        <?php echo get_the_date(); ?> // Always returns the date
      </section>
    </article>
    <?php edit_post_link(); ?>
    <?php if ( ! post_password_required() ) comments_template( '', false ); ?>
  <?php endwhile; endif; ?>
</section>