-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsecond.php
28 lines (23 loc) · 974 Bytes
/
second.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!-- This is a secondary template because of the Template Name php comment. -->
<!-- Creating a new page in the admin area, find "Page Attributes" under "Template" select this template "Stats Page". -->
<!-- Because this is a secondary template, no index.php, page.php, or page-< slug >.php will be used. -->
<?php
/*
Template Name: Stats Page
*/
?>
<!-- You have full control over what header etc you want to display or not -->
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php the_permalink(); ?>
<?php get_calendar(); ?>
<?php the_time('d M y'); ?>
<!-- All POST defined in our will be listed here -->
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<!-- <?php the_excerpt(); ?> why don't see the whole post, when clicking the tag -->
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<?php endif; ?>