forked from NorthIsUp/Simple-Wordpress-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.php
More file actions
22 lines (19 loc) · 615 Bytes
/
Copy pathpost.php
File metadata and controls
22 lines (19 loc) · 615 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="small">
<?php the_time('F jS, Y') ?> |
<!-- by <?php the_author() ?> -->
Published in
<?php
the_category(', ');
if($post->comment_count > 0) {
echo ' | ';
comments_popup_link('', '1 Comment', '% Comments');
}
edit_post_link('Edit', ' | ', '');
?>
</p>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
</div> <!-- /post -->