2009-08-21 19:29:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Display post
|
|
|
|
* Displays the post info
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
function display_blog_post() {
|
|
|
|
global $post, $wp_query, $authordata, $enable_related_posts;
|
|
|
|
if (is_single()) { ?>
|
|
|
|
<div class="nav-blog">
|
|
|
|
<div class="nav-blog-previous"><?php previous_post_link('%link','‹ Previous', TRUE) ?></div>
|
|
|
|
<div class="nav-blog-next"><?php next_post_link('%link','Next ›', TRUE) ?></div>
|
|
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
<?php } ?>
|
|
|
|
<div class="post-head"></div>
|
|
|
|
<div class="post" id="post-<?php the_ID() ?>">
|
|
|
|
<div class="post-info">
|
|
|
|
<div class="post-date">
|
|
|
|
<div class="date"><span><?php the_time('M') ?></span> <?php the_time('d') ?></div>
|
|
|
|
</div>
|
|
|
|
<div class="post-text">
|
|
|
|
<h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
|
|
|
|
<small> - By <?php the_author_posts_link(); ?> on <?php the_time('F jS, Y'); ?></small><br />
|
2009-08-22 23:22:40 +00:00
|
|
|
<small> - Subject: <?php the_category(','); ?> <?php edit_post_link('Edit Post', ' [ ', ' ] '); ?> </small><br />
|
2009-08-21 19:29:45 +00:00
|
|
|
<?php if(function_exists('the_ratings')) { the_ratings(); } ?>
|
|
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
</div>
|
|
|
|
<div class="entry">
|
|
|
|
<?php if (!is_single()) { global $more; $more = 0; } ?>
|
|
|
|
<?php the_content('↓ Read the rest of this entry...') ?>
|
|
|
|
</div>
|
|
|
|
<div class="post-extras">
|
|
|
|
<div class="tags">
|
2009-08-22 23:22:40 +00:00
|
|
|
<?php the_tags('└ Tags: ', ', ', '<br />'); ?>
|
2009-08-21 19:29:45 +00:00
|
|
|
</div>
|
|
|
|
<div class="comment-link">
|
|
|
|
<?php if ('open' == $post->comment_status) { comments_popup_link('“Comment!”', '“1 Comment”', '“% Comments”'); } ?>
|
|
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
<?php if ($enable_related_posts == 'yes') echo related_posts_shortcode(); ?>
|
|
|
|
</div>
|
|
|
|
<br class="clear-margins" />
|
|
|
|
</div>
|
|
|
|
<div class="post-foot"></div>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
2009-08-21 17:45:23 +00:00
|
|
|
?>
|