1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<?php if ( have_posts() ): ?> <h2>Latest Posts</h2> <ol> <?php while ( have_posts() ) : the_post(); ?> <li> <article> <h2><a href="<?php esc_url( the_permalink() ); ?>" title="Permalink to <?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <time datetime="<?php the_time( 'Y-m-d' ); ?>" pubdate><?php the_date(); ?> <?php the_time(); ?></time> <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?> <?php the_content(); ?> </article> </li> <?php endwhile; ?> </ol> <?php else: ?> <h2>No posts to display</h2> <?php endif; ?> |
Add this snippet where you want the content of that actual page to display. If you have 7 pages all with different content such as day of week, using the same template, this snippet would look the same showing each day for each page!