79 lines
3.1 KiB
PHP
79 lines
3.1 KiB
PHP
<?php
|
|
/*
|
|
Template Name: Comic Storyline with Thumbs
|
|
*/
|
|
|
|
global $comicpress;
|
|
|
|
$comicpress->additional_stylesheets[] = '/style/archive-comic-calendar.css';
|
|
|
|
?>
|
|
|
|
<div class="post-page-head"></div>
|
|
<div class="post-page">
|
|
<?php while (have_posts()) : the_post(); ?>
|
|
<div class="entry">
|
|
<h2 class="pagetitle"><?php the_title() ?></h2>
|
|
<?php the_content(); ?>
|
|
</div>
|
|
<?php endwhile; ?>
|
|
<ul id="storyline" class="level-0">
|
|
<?php if (get_option('comicpress-enable-storyline-support') == 1) {
|
|
if (($result = get_option("comicpress-storyline-category-order")) !== false) {
|
|
$categories_by_id = get_all_category_objects_by_id();
|
|
$current_depth = 0;
|
|
$storyline_root = " class=\"storyline-root\"";
|
|
foreach (explode(",", $result) as $node) {
|
|
$parts = explode("/", $node);
|
|
$target_depth = count($parts) - 2;
|
|
$category_id = end($parts);
|
|
$category = $categories_by_id[$category_id];
|
|
$description = $category->description;
|
|
$first_comic_in_category = get_terminal_post_in_category($category_id);
|
|
$first_comic_permalink = get_permalink($first_comic_in_category->ID);
|
|
$archive_image = null;
|
|
foreach (array("archive", "rss", "comic") as $type) {
|
|
if (($requested_archive_image = get_comic_url("archive", $first_comic_in_category)) !== false) {
|
|
$archive_image = $requested_archive_image; break;
|
|
}
|
|
}
|
|
if ($target_depth < $current_depth) {
|
|
echo str_repeat("</ul></li>", ($current_depth - $target_depth));
|
|
}
|
|
if ($target_depth > $current_depth) {
|
|
for ($i = $current_depth; $i < $target_depth; ++$i) {
|
|
$next_i = $i + 1;
|
|
echo "<li><ul class=\"level-${next_i}\">";
|
|
}
|
|
} ?>
|
|
|
|
<li id="storyline-<?php echo $category->category_nicename ?>"<?php echo $storyline_root; $storyline_root = null ?>>
|
|
<?php if (!empty($first_comic_in_category)) { ?>
|
|
<a href="<?php echo $first_comic_permalink ?>" title="First comic in <?php echo $category->cat_name ?>."><img src="<?php echo $archive_image ?>" /></a>
|
|
<?php } ?>
|
|
<a href="<?php echo get_category_link($category_id) ?>" class="storyline-title"><?php echo $category->cat_name ?></a>
|
|
<?php if (!empty($description)) { ?>
|
|
<div class="storyline-description"><?php echo $description ?></div>
|
|
<?php } ?>
|
|
<div class="storyline-foot"></div>
|
|
</li>
|
|
|
|
<?php $current_depth = $target_depth;
|
|
}
|
|
if ($current_depth > 0) {
|
|
echo str_repeat("</ul></li>", $current_depth);
|
|
}
|
|
}
|
|
} else { ?>
|
|
<li><h3>Storyline Support is not currently enabled on this site.</h3><br /><br /><strong>Note to the Administrator:</strong><br /> To enable storyline support and manage storyline categories make sure you are running the latest version of the <a href="http://wordpress.org/extend/plugins/comicpress-manager/">ComicPress Manager</a> plugin and check your storyline settings from it's administration menu.</h3></li>
|
|
<?php } ?>
|
|
</ul>
|
|
<br class="clear-margins" />
|
|
</div>
|
|
<div class="post-page-foot"></div>
|
|
|
|
</div>
|
|
|
|
<?php get_sidebar() ?>
|
|
|
|
<?php get_footer() ?>
|