implement FS#39
This commit is contained in:
parent
eccfb865f3
commit
dab1053406
|
@ -124,7 +124,7 @@ $month['12'] = array('month' => 'December', 'days' => '31');
|
|||
<h2 class="pagetitle"><span class="archive-year"><?php echo $archive_year ?></span> <?php the_title() ?></h2>
|
||||
|
||||
<div class="entry">
|
||||
<?php while (have_posts()) : the_post(); the_content(); endwhile ?>
|
||||
<?php while (have_posts()) : the_post(); the_content(); endwhile; ?>
|
||||
</div>
|
||||
|
||||
<div class="archive-yearlist">|
|
||||
|
|
|
@ -67,7 +67,7 @@ Template Name: Comic Storyline with Thumbs
|
|||
<div class="post-page">
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<div class="entry">
|
||||
<?php while (have_posts()) : the_post(); the_content(); endwhile ?>
|
||||
<?php while (have_posts()) : the_post(); the_content(); endwhile; ?>
|
||||
</div>
|
||||
<ul id="storyline" class="level-0">
|
||||
<?php if (get_option('comicpress-enable-storyline-support') == 1) {
|
||||
|
|
|
@ -67,7 +67,7 @@ Template Name: Comic Storyline Archive
|
|||
<div class="post-page">
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<div class="entry">
|
||||
<?php while (have_posts()) : the_post(); the_content(); endwhile ?>
|
||||
<?php while (have_posts()) : the_post(); the_content(); endwhile; ?>
|
||||
</div>
|
||||
<ul id="storyline" class="level-0">
|
||||
<?php if (get_option('comicpress-enable-storyline-support') == 1) {
|
||||
|
|
|
@ -41,7 +41,7 @@ Template Name: Comic Year Archive
|
|||
<h2 class="pagetitle"><span class="archive-year"><?php echo $archive_year; ?></span> <?php the_title() ?></h2>
|
||||
|
||||
<div class="entry">
|
||||
<?php while (have_posts()) : the_post(); the_content(); endwhile ?>
|
||||
<?php while (have_posts()) : the_post(); the_content(); endwhile; ?>
|
||||
</div>
|
||||
|
||||
<div class="archive-yearlist">|
|
||||
|
|
|
@ -29,7 +29,7 @@ Template Name: Comic Archive
|
|||
<div class="post-page">
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<div class="entry">
|
||||
<?php while (have_posts()) : the_post(); the_content(); endwhile ?>
|
||||
<?php while (have_posts()) : the_post(); the_content(); endwhile; ?>
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -41,7 +41,7 @@ Template Name: Comic Archive
|
|||
<?php $comicArchive = new WP_Query(); $comicArchive->query('showposts=10000&cat='.get_all_comic_categories_as_cat_string().'&year='.$year);
|
||||
while ($comicArchive->have_posts()) : $comicArchive->the_post() ?>
|
||||
<tr><td class="archive-date"><?php the_time('M j') ?></td><td class="archive-title"><a href="<?php echo get_permalink($post->ID) ?>" rel="bookmark" title="Permanent Link: <?php the_title() ?>"><?php the_title() ?></a></td></tr>
|
||||
<?php endwhile ?>
|
||||
<?php endwhile; ?>
|
||||
</table>
|
||||
<?php } } ?>
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
|
||||
<?php } ?>
|
||||
|
||||
<?php endwhile ?>
|
||||
<?php endwhile; ?>
|
||||
|
||||
<div class="pagenav">
|
||||
<div class="pagenav-right"><?php next_posts_link('Next Page ›') ?></div>
|
||||
|
@ -81,7 +81,7 @@
|
|||
</div>
|
||||
<div class="post-foot"></div>
|
||||
|
||||
<?php endif ?>
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
|
||||
<?php endif ?>
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<img src="<?php the_comic() ?>" alt="<?php the_title() ?>" title="<?php the_hovertext() ?>" />
|
||||
</div>
|
||||
<div id="comic-foot"></div>
|
||||
<?php endwhile ?>
|
||||
<?php endwhile; ?>
|
||||
|
||||
<div id="column">
|
||||
|
||||
|
@ -43,7 +43,7 @@
|
|||
<br class="clear-margins" />
|
||||
</div>
|
||||
<div class="post-comic-foot"></div>
|
||||
<?php endwhile ?>
|
||||
<?php endwhile; ?>
|
||||
|
||||
<div id="blogheader"><!-- This area can be used for a heading above your main page blog posts --></div>
|
||||
|
||||
|
@ -75,7 +75,7 @@
|
|||
<div class="clear-margins"><br /></div>
|
||||
</div>
|
||||
<div class="post-foot"></div>
|
||||
<?php endwhile ?>
|
||||
<?php endwhile; ?>
|
||||
<div class="pagenav">
|
||||
<div class="pagenav-right"><?php previous_posts_link('Newer Entries ↑') ?></div>
|
||||
<div class="pagenav-left"><?php next_posts_link('↓ Previous Entries') ?></div>
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
|
||||
<?php } ?>
|
||||
|
||||
<?php endwhile ?>
|
||||
<?php endwhile; ?>
|
||||
|
||||
<div class="pagenav">
|
||||
<div class="pagenav-right"><?php next_posts_link('Next Page ›') ?></div>
|
||||
|
@ -63,7 +63,7 @@
|
|||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
|
||||
<?php endif ?>
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<img src="<?php the_comic() ?>" alt="<?php the_title() ?>" title="<?php the_hovertext() ?>" />
|
||||
</div>
|
||||
<div id="comic-foot"></div>
|
||||
<?php } endwhile ?>
|
||||
<?php } endwhile; ?>
|
||||
|
||||
<div id="column">
|
||||
|
||||
|
@ -76,7 +76,7 @@
|
|||
</div>
|
||||
<div class="post-foot"></div>
|
||||
|
||||
<?php endif ?>
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue