-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsingle.php
30 lines (24 loc) · 1.1 KB
/
single.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
29
30
<?php get_header(); ?>
<div class="content" role="main">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php previous_post_link( '%link', '' . _x( '←', 'Previous post link', 'twentyten' ) . ' %title' ); ?>
<?php next_post_link( '%link', '%title ' . _x( '→', 'Next post link', 'twentyten' ) . '' ); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header>
<h1><?php the_title(); ?></h1>
<?php wpst_posted_on(); ?>
</header>
<?php the_content(); ?>
<footer>
<?php wp_link_pages( array( 'before' => '' . 'Pages:', 'after' => '' ) ); ?>
<?php wpst_posted_in(); ?>
<?php edit_post_link( 'Edit', '', '' ); ?>
<?php previous_post_link( '%link', '' . _x( '←', 'Previous post link', 'twentyten' ) . ' %title' ); ?>
<?php next_post_link( '%link', '%title ' . _x( '→', 'Next post link', 'twentyten' ) . '' ); ?>
</footer>
<?php comments_template( '', true ); ?>
</article>
<?php endwhile; // end of the loop. ?>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>