Template and page display changes
Signed-off-by: Philip M. Hofer (Frumph) <frumph_dragon@yahoo.com>
This commit is contained in:
parent
34d8078b1d
commit
e33cd2d2fb
|
@ -71,15 +71,32 @@ $month['12'] = array('month' => __('December','comicpress'), 'days' => '31');
|
|||
<?php while (have_posts()) : the_post() ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
|
||||
<?php if (function_exists('has_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_post_thumbnail('full'); ?></a>
|
||||
</div>
|
||||
<?php }
|
||||
} ?>
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<h2 class="pagetitle"><?php the_title() ?> <span class="page-archive-year"> <?php echo $archive_year; ?></span></h2>
|
||||
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php } ?>
|
||||
<div class="entry">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
<br class="clear-margins" />
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<div class="archive-yearlist">|
|
||||
<?php $years = $wpdb->get_col("SELECT DISTINCT YEAR(post_date) FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_date ASC");
|
||||
foreach ( $years as $year ) {
|
||||
|
@ -156,11 +173,9 @@ foreach ( $years as $year ) {
|
|||
<?php } ?>
|
||||
</div>
|
||||
<br class="clear-margins" />
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php if ('open' == $post->comment_status) { comments_template('', true); } ?>
|
||||
|
||||
|
|
|
@ -10,14 +10,16 @@ Template Name: This Month of Comics
|
|||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<?php if (function_exists('has_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-image">
|
||||
<div class="post-page-image">
|
||||
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_post_thumbnail('full'); ?></a>
|
||||
</div>
|
||||
<?php }
|
||||
} ?>
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php } ?>
|
||||
<div class="entry">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
|
|
|
@ -6,24 +6,35 @@ Template Name: Comic Storyline with Thumbs
|
|||
<?php get_header(); ?>
|
||||
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
||||
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<?php if (function_exists('has_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_post_thumbnail('full'); ?></a>
|
||||
</div>
|
||||
<?php }
|
||||
} ?>
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
<?php if (function_exists('the_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<?php the_post_thumbnail('full'); ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php } ?>
|
||||
<div class="entry">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
<?php endwhile; ?>
|
||||
<br class="clear-margins" />
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<ul id="storyline" class="level-0">
|
||||
<?php if (get_option('comicpress-enable-storyline-support') == 1) {
|
||||
if (($result = get_option("comicpress-storyline-category-order")) !== false) {
|
||||
|
@ -80,5 +91,7 @@ Template Name: Comic Storyline with Thumbs
|
|||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php if ('open' == $post->comment_status) { comments_template('', true); } ?>
|
||||
|
||||
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
||||
<?php get_footer() ?>
|
|
@ -6,24 +6,35 @@ Template Name: Comic Storyline Archive
|
|||
<?php get_header(); ?>
|
||||
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
||||
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<?php if (function_exists('has_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_post_thumbnail('full'); ?></a>
|
||||
</div>
|
||||
<?php }
|
||||
} ?>
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
<?php if (function_exists('the_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<?php the_post_thumbnail('full'); ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php } ?>
|
||||
<div class="entry">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
<?php endwhile; ?>
|
||||
<br class="clear-margins" />
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<ul id="storyline" class="level-0">
|
||||
<?php if (get_option('comicpress-enable-storyline-support') == 1) {
|
||||
if (($result = get_option("comicpress-storyline-category-order")) !== false) {
|
||||
|
@ -82,5 +93,7 @@ Template Name: Comic Storyline Archive
|
|||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php if ('open' == $post->comment_status) { comments_template('', true); } ?>
|
||||
|
||||
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
||||
<?php get_footer() ?>
|
|
@ -17,26 +17,35 @@ if (isset($_REQUEST['archive_year'])) {
|
|||
if (empty($archive_year) || $archive_year == '') $archive_year = date('Y');
|
||||
?>
|
||||
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<?php if (function_exists('has_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_post_thumbnail('full'); ?></a>
|
||||
</div>
|
||||
<?php }
|
||||
} ?>
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
<?php if (function_exists('the_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<?php the_post_thumbnail('full'); ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
||||
<h2 class="pagetitle"><?php the_title() ?> <span class="page-archive-year"> <?php echo $archive_year; ?></span></h2>
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php } ?>
|
||||
<div class="entry">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
<br class="clear-margins" />
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
<?php endwhile; ?>
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<div class="archive-yearlist">|
|
||||
<?php $years = $wpdb->get_col("SELECT DISTINCT YEAR(post_date) FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_date ASC");
|
||||
foreach ( $years as $year ) {
|
||||
|
@ -51,12 +60,12 @@ if (empty($archive_year) || $archive_year == '') $archive_year = date('Y');
|
|||
<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="<?php _e('Permanent Link:','comicpress'); ?> <?php the_title() ?>"><?php the_title() ?></a></td></tr>
|
||||
<?php endwhile; ?>
|
||||
</table>
|
||||
|
||||
<br class="clear-margins" />
|
||||
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php if ('open' == $post->comment_status) { comments_template('', true); } ?>
|
||||
|
||||
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
||||
<?php get_footer() ?>
|
|
@ -5,43 +5,56 @@ Template Name: Comic Archive
|
|||
?>
|
||||
<?php get_header(); ?>
|
||||
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
||||
|
||||
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<?php if (function_exists('has_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-image">
|
||||
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_post_thumbnail('full'); ?></a>
|
||||
</div>
|
||||
<?php }
|
||||
} ?>
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
<?php if (function_exists('the_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<?php the_post_thumbnail('full'); ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php } ?>
|
||||
<div class="entry">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php $years = $wpdb->get_col("SELECT DISTINCT YEAR(post_date) FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_date DESC");
|
||||
foreach ( $years as $year ) {
|
||||
if ($year != (0) ) { ?>
|
||||
<h3><?php echo $year ?></h3>
|
||||
<table class="month-table">
|
||||
<?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="<?php _e('Permanent Link:','comicpress'); ?> <?php the_title() ?>"><?php the_title() ?></a></td></tr>
|
||||
<?php endwhile; ?>
|
||||
</table>
|
||||
<?php } } ?>
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
<br class="clear-margins" />
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php
|
||||
$years = $wpdb->get_col("SELECT DISTINCT YEAR(post_date) FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_date DESC");
|
||||
foreach ( $years as $year ) {
|
||||
if ($year != (0) ) {
|
||||
?>
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<h3><?php echo $year ?></h3>
|
||||
<table class="month-table">
|
||||
<?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="<?php _e('Permanent Link:','comicpress'); ?> <?php the_title() ?>"><?php the_title() ?></a></td></tr>
|
||||
<?php endwhile; ?>
|
||||
</table>
|
||||
<br class="clear-margins" />
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
<?php }
|
||||
} ?>
|
||||
|
||||
<?php if ('open' == $post->comment_status) { comments_template('', true); } ?>
|
||||
|
||||
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
||||
<?php get_footer() ?>
|
24
archive.php
24
archive.php
|
@ -39,13 +39,20 @@
|
|||
<?php } ?>
|
||||
<div class="searchresults"><?php printf(__ngettext("%d item.", "%d items.", $count,'comicpress'),$count); ?></div>
|
||||
</div>
|
||||
<br class="clear-margins" />
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php if (is_category() && in_comic_category()) { ?>
|
||||
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
|
||||
<?php } ?>
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
|
||||
|
||||
<?php if (is_category() && in_comic_category()) { ?>
|
||||
|
||||
<div class="comicthumbwrap">
|
||||
|
@ -53,7 +60,7 @@
|
|||
<a href="<?php the_permalink() ?>"><img src="<?php the_comic_mini() ?>" alt="<?php the_title() ?>" title="<?php the_title() ?>" /></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<?php } else { ?>
|
||||
<?php global $archive_comic_width; if (in_comic_category()) { ?>
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
|
@ -131,6 +138,16 @@
|
|||
<?php } ?>
|
||||
<?php } ?>
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php if (is_category() && in_comic_category()) { ?>
|
||||
|
||||
<br class="clear-margins" />
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php } ?>
|
||||
|
||||
<div class="clear"></div>
|
||||
<?php else : ?>
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
|
@ -139,6 +156,7 @@
|
|||
<h3><?php _e('No posts found.','comicpress'); ?></h3>
|
||||
<p><?php _e('Try another search?','comicpress'); ?></p>
|
||||
<p><?php include(get_template_directory() . '/searchform.php') ?></p>
|
||||
<br class="clear-margins" />
|
||||
</div>
|
||||
<div class="post-foot"></div>
|
||||
</div>
|
||||
|
|
62
archives.php
62
archives.php
|
@ -5,20 +5,58 @@ Template Name: Archives
|
|||
?>
|
||||
<?php get_header(); ?>
|
||||
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<div id="archivepage">
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<ul><?php wp_get_archives('type=monthly') ?></ul>
|
||||
<h2><?php _e('Archives by Subject:','comicpress'); ?></h2>
|
||||
<ul><?php wp_list_categories() ?></ul>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<?php if (function_exists('has_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-image">
|
||||
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_post_thumbnail('full'); ?></a>
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
<?php }
|
||||
} ?>
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php } ?>
|
||||
<div class="entry">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
<br class="clear-margins" />
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<div id="archivepage">
|
||||
<h2><?php _e('Archives by Month:','comicpress'); ?></h2>
|
||||
<ul><?php wp_get_archives('type=monthly') ?></ul>
|
||||
</div>
|
||||
<br class="clear-margins" />
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<div id="archivepage">
|
||||
<h2><?php _e('Archives by Subject:','comicpress'); ?></h2>
|
||||
<ul><?php wp_list_categories() ?></ul>
|
||||
</div>
|
||||
<br class="clear-margins" />
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php if ('open' == $post->comment_status) { comments_template('', true); } ?>
|
||||
|
||||
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
||||
<?php get_footer() ?>
|
64
buystrip.php
64
buystrip.php
|
@ -11,23 +11,14 @@ Template Version: 2.14
|
|||
<?php get_header(); ?>
|
||||
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
||||
|
||||
<?php if (!empty($comicnum)): ?>
|
||||
<?php $temppost = $post; ?>
|
||||
<?php $post = & get_post( $comicnum ); ?>
|
||||
<?php
|
||||
if (!empty($comicnum)):
|
||||
$temppost = $post;
|
||||
$post = & get_post( $comicnum );
|
||||
?>
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<div style="float:right;">
|
||||
<br />
|
||||
<img src="<?php echo get_template_directory_uri(); ?>/images/paypal.png" alt="<?php _e('Powered by Paypal','comicpress'); ?>" /><br />
|
||||
</div>
|
||||
<?php if (function_exists('the_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<?php the_post_thumbnail('full'); ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php } ?>
|
||||
|
@ -96,27 +87,42 @@ Template Version: 2.14
|
|||
</center>
|
||||
<br />
|
||||
<?php $post = $temppost; ?>
|
||||
<div class="clear"></div>
|
||||
<br class="clear-margins" />
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<?php if (have_posts()) : while (have_posts()) : the_post() ?>
|
||||
|
||||
<?php else: ?>
|
||||
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page" id="post-<?php the_ID() ?>">
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<div class="entry">
|
||||
<?php the_content() ?>
|
||||
<?php wp_link_pages(array('before' => '<p><strong>'.__('Pages:','comicpress').'</strong> ', 'after' => '</p>', 'next_or_number' => 'number')) ?>
|
||||
</div>
|
||||
<?php if (function_exists('has_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_post_thumbnail('full'); ?></a>
|
||||
</div>
|
||||
<?php }
|
||||
} ?>
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php } ?>
|
||||
<div class="entry">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
<br class="clear-margins" />
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
<?php endwhile; endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php if ('open' == $post->comment_status) { comments_template('', true); } ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
||||
<?php get_footer() ?>
|
||||
|
|
|
@ -25,7 +25,7 @@ $rss_comic_width = "600";
|
|||
$blog_postcount = "3";
|
||||
|
||||
//Mini Comic Width - The width your comics will appear in minithumbs (default "100")
|
||||
$mini_comic_width = "200";
|
||||
$mini_comic_width = "80";
|
||||
|
||||
//Minithumb Comic Folder - The folder for your your mini thumbs (default "comics-mini")
|
||||
$mini_comic_folder = "comics-mini";
|
||||
|
|
77
links.php
77
links.php
|
@ -6,43 +6,52 @@ Template Name: Links
|
|||
<?php get_header(); ?>
|
||||
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
||||
|
||||
<?php
|
||||
$linkcatid = get_term_by('name','menubar','link_category');
|
||||
$linkcatid = $linkcatid->term_id;
|
||||
$bookmarks = wp_list_bookmarks('echo=0&categorize=1&exclude_category='.$linkcatid);
|
||||
$bookmarks = preg_replace('#<li ([^>]*)>#', '<li>', $bookmarks);
|
||||
$bookmarks = preg_replace('#<ul ([^>]*)>#', '<ul>', $bookmarks);
|
||||
?>
|
||||
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<?php if (function_exists('the_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<?php the_post_thumbnail('full'); ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php } ?>
|
||||
<div class="entry">
|
||||
<?php the_content(); ?>
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<?php if (function_exists('has_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_post_thumbnail('full'); ?></a>
|
||||
</div>
|
||||
<br class="clear-margins" />
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
<div id="linkspage">
|
||||
<ul>
|
||||
<?php echo $bookmarks; ?>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<?php }
|
||||
} ?>
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php } ?>
|
||||
<div class="entry">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
<br class="clear-margins" />
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
</div>
|
||||
<?php endwhile; ?>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php
|
||||
$linkcatid = get_term_by('name','menubar','link_category');
|
||||
$linkcatid = $linkcatid->term_id;
|
||||
$bookmarks = wp_list_bookmarks('echo=0&categorize=1&exclude_category='.$linkcatid);
|
||||
$bookmarks = preg_replace('#<li ([^>]*)>#', '<li>', $bookmarks);
|
||||
$bookmarks = preg_replace('#<ul ([^>]*)>#', '<ul>', $bookmarks);
|
||||
?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<div id="linkspage">
|
||||
<ul>
|
||||
<?php echo $bookmarks; ?>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
||||
<?php get_footer() ?>
|
||||
|
|
50
page.php
50
page.php
|
@ -1,33 +1,35 @@
|
|||
<?php get_header(); ?>
|
||||
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
||||
|
||||
<?php if (have_posts()) : while (have_posts()) : the_post() ?>
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page" id="post-<?php the_ID() ?>">
|
||||
<?php if (function_exists('the_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<?php the_post_thumbnail('full'); ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php } ?>
|
||||
<div class="entry">
|
||||
<?php the_content() ?>
|
||||
<?php wp_link_pages(array('before' => '<div class="linkpages"><span class="linkpages-pagetext">'.__('Pages:','comicpress').'</span> ', 'after' => '</div>', 'next_or_number' => 'number')); ?>
|
||||
<?php while (have_posts()) : the_post() ?>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<?php if (function_exists('has_post_thumbnail')) {
|
||||
if ( has_post_thumbnail() ) { ?>
|
||||
<div class="post-page-image">
|
||||
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_post_thumbnail('full'); ?></a>
|
||||
</div>
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
<div class="clear"></div>
|
||||
<?php }
|
||||
} ?>
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<?php if (!$comicpress_options['disable_page_titles']) { ?>
|
||||
<h2 class="pagetitle"><?php the_title() ?></h2>
|
||||
<?php } ?>
|
||||
<div class="entry">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
<div class="post-page-foot"></div>
|
||||
<br class="clear-margins" />
|
||||
<?php wp_link_pages(array('before' => '<div class="linkpages"><span class="linkpages-pagetext">'.__('Pages:','comicpress').'</span> ', 'after' => '</div>', 'next_or_number' => 'number')); ?>
|
||||
<br class="clear-margins" />
|
||||
<?php edit_post_link(__('Edit this page.','comicpress'), '<p>', '</p>') ?>
|
||||
</div>
|
||||
<?php if ('open' == $post->comment_status) {
|
||||
comments_template('', true);
|
||||
} ?>
|
||||
<?php endwhile; endif; ?>
|
||||
<div class="post-page-foot"></div>
|
||||
</div>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php if ('open' == $post->comment_status) { comments_template('', true); } ?>
|
||||
|
||||
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
||||
<?php get_footer() ?>
|
||||
|
|
|
@ -7,9 +7,16 @@ $tmp_search = new WP_Query($query_string.'&order=desc&show_posts=-1&posts_per_pa
|
|||
$count = $tmp_search->post_count;
|
||||
?>
|
||||
<?php if (!$count) $count = "no"; ?>
|
||||
<h2 class="pagetitle"><?php _e('Transcript search for ‘','comicpress'); ?><?php the_search_query() ?><?php _e('’','comicpress'); ?></h2>
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<h2 class="pagetitle"><?php _e('Search for ‘','comicpress'); the_search_query(); _e('’','comicpress'); ?></h2>
|
||||
<div class="searchresults"><?php printf(__ngettext("%d item.", "%d items.", $count,'comicpress'),$count); ?></div>
|
||||
<?php if (have_posts()) : ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php if (have_posts()) : ?>
|
||||
|
||||
<?php $posts = query_posts($query_string.'&order=asc');
|
||||
while (have_posts()) : the_post() ?>
|
||||
|
|
12
search.php
12
search.php
|
@ -8,12 +8,16 @@
|
|||
?>
|
||||
<?php if (!$count) $count = "no"; ?>
|
||||
|
||||
|
||||
<div class="<?php comicpress_post_class(); ?>">
|
||||
<div class="post-page-head"></div>
|
||||
<div class="post-page">
|
||||
<h2 class="pagetitle"><?php _e('Search for ‘','comicpress'); the_search_query(); _e('’','comicpress'); ?></h2>
|
||||
<div class="searchresults"><?php printf(__ngettext("%d item.", "%d items.", $count,'comicpress'),$count); ?></div>
|
||||
<?php if (have_posts()) : ?>
|
||||
|
||||
<?php $posts = query_posts($query_string.'&order=asc');
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php if (have_posts()) :
|
||||
$posts = query_posts($query_string.'&order=asc');
|
||||
while (have_posts()) : the_post() ?>
|
||||
|
||||
<?php global $archive_comic_width; if (in_comic_category()) { ?>
|
||||
|
|
Loading…
Reference in New Issue