-
Notifications
You must be signed in to change notification settings - Fork 2
/
single.php
27 lines (26 loc) · 1.14 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
<?php get_header(); ?>
<div id="page-<?php echo get_the_ID();?>-content" class="page-content news-item">
<!--Begin Content-->
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1 id="content-title"><?php the_title(); ?></h1>
<?php the_content(__('(more...)')); ?>
<?php echo wp_link_pages(); ?>
<div class="post-metadata">
<hr />
<table class="post-metadata-table">
<tr>
<td class="post-metadata-label">Posted in:</td>
<td>
<img class="post-metadata-icon" width="14" height="14"
alt="" src="<?php bloginfo('template_directory');?>/images/postcategoryicon.png" /> <?php the_category(', ') ?> on <strong><?php the_time( get_option( 'date_format' ) ); ?></strong>
</td>
</tr>
<?php previous_post_link("<tr><td class='post-metadata-label'>Previous:</td><td>%link</td></tr>"); ?>
<?php next_post_link("<tr><td class='post-metadata-label'>Next:</td><td>%link</td></tr>"); ?>
</table>
<hr />
</div>
<?php endwhile; endif; ?>
<!--End Content-->
</div>
<?php get_footer(); ?>