2009-08-21 19:29:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Display comic post
|
|
|
|
* Displays the post info for the comic
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
function display_comic_post() {
|
|
|
|
global $post, $wp_query, $transcript_in_posts, $enable_related_comics;
|
|
|
|
$first_comic = get_first_comic_permalink(); $last_comic = get_last_comic_permalink();
|
|
|
|
?>
|
|
|
|
<div class="nav">
|
|
|
|
<?php if ( get_permalink() != $first_comic ) { ?><div class="nav-first"><a href="<?php echo $first_comic ?>">‹‹ First</a></div><?php } ?>
|
|
|
|
<div class="nav-previous"><?php $temp_query = $wp_query->is_single; $wp_query->is_single = true; previous_comic_link('%link', '‹ Previous'); $wp_query->is_single = $temp_query;$temp_query = null; ?></div>
|
|
|
|
<div class="nav-next"><?php next_comic_link('%link', 'Next ›') ?></div>
|
|
|
|
<?php if ( get_permalink() != $last_comic ) { ?><div class="nav-last"><a href="<?php echo $last_comic ?>">Last ››</a></div><?php } ?>
|
|
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
<div class="post-comic-head"></div>
|
|
|
|
<div class="post-comic">
|
|
|
|
<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 />
|
|
|
|
<?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 More..') ?>
|
|
|
|
</div>
|
|
|
|
<?php if ($transcript_in_posts == 'yes') the_transcript('styled'); ?>
|
|
|
|
<div class="post-extras">
|
|
|
|
<div class="tags">
|
|
|
|
<?php the_tags('└ Tags: ', ', ', '<br />'); ?> <?php edit_post_link('Edit Post', ' [ ', ' ] '); ?>
|
|
|
|
</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_comics == 'yes') echo related_comics_shortcode(); ?>
|
|
|
|
</div>
|
|
|
|
<br class="clear-margins" />
|
|
|
|
</div>
|
|
|
|
<div class="post-comic-foot"></div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
2009-08-21 17:45:23 +00:00
|
|
|
?>
|