2009-11-13 16:00:25 +00:00
|
|
|
<?php get_header(); ?>
|
|
|
|
<?php remove_filter('pre_get_posts','comicpress_members_filter'); ?>
|
|
|
|
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
$tmp_search = new WP_Query($query_string.'&order=desc&show_posts=-1&posts_per_page=-1');
|
|
|
|
$count = $tmp_search->post_count;
|
|
|
|
?>
|
|
|
|
<?php if (!$count) $count = "no"; ?>
|
2009-12-20 12:05:59 +00:00
|
|
|
|
2009-12-24 23:15:30 +00:00
|
|
|
<div <?php post_class(); ?>>
|
|
|
|
<div class="post-head"></div>
|
2009-12-24 23:22:28 +00:00
|
|
|
<div class="post-content">
|
2009-12-20 12:05:59 +00:00
|
|
|
<h2 class="pagetitle"><?php _e('Search for ‘','comicpress'); the_search_query(); _e('’','comicpress'); ?></h2>
|
2009-11-13 16:00:25 +00:00
|
|
|
<div class="searchresults"><?php printf(__ngettext("%d item.", "%d items.", $count,'comicpress'),$count); ?></div>
|
2009-12-20 12:05:59 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php if (have_posts()) : ?>
|
2009-11-13 16:00:25 +00:00
|
|
|
|
|
|
|
<?php $posts = query_posts($query_string.'&order=asc');
|
2009-12-22 12:21:44 +00:00
|
|
|
while (have_posts()) : the_post();
|
2009-11-13 16:00:25 +00:00
|
|
|
|
2009-12-22 12:21:44 +00:00
|
|
|
if (is_category() && in_comic_category()) { ?>
|
|
|
|
|
|
|
|
<div class="comicthumbwrap">
|
|
|
|
<div class="comicarchiveframe" style="width: <?php echo $mini_comic_width; ?>px">
|
|
|
|
<a href="<?php the_permalink() ?>"><img src="<?php the_comic_mini() ?>" alt="<?php the_title() ?>" title="<?php the_title() ?>" /></a>
|
2009-11-13 16:00:25 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2009-12-22 12:21:44 +00:00
|
|
|
|
|
|
|
<?php } else { ?>
|
|
|
|
<?php if (in_comic_category()) {
|
2009-12-24 23:09:56 +00:00
|
|
|
comicpress_display_post();
|
2009-12-22 12:21:44 +00:00
|
|
|
} else {
|
2009-12-24 23:09:56 +00:00
|
|
|
comicpress_display_post();
|
2009-12-22 12:21:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
endwhile;
|
2009-11-13 16:00:25 +00:00
|
|
|
|
2009-12-22 12:21:44 +00:00
|
|
|
else : ?>
|
2009-12-24 23:15:30 +00:00
|
|
|
<div <?php post_class(); ?>>
|
|
|
|
<div class="post-head"></div>
|
2009-12-24 23:22:28 +00:00
|
|
|
<div class="post-content">
|
2009-11-13 16:00:25 +00:00
|
|
|
<h3><?php _e('No transcripts found.','comicpress'); ?></h3>
|
|
|
|
<p><?php _e('Try another search?','comicpress'); ?></p>
|
|
|
|
<p><?php include(get_template_directory() . '/searchform-transcript.php') ?></p>
|
|
|
|
</div>
|
2009-12-24 23:15:30 +00:00
|
|
|
<div class="post-foot"></div>
|
2009-11-13 16:00:25 +00:00
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php comicpress_pagination(); ?>
|
|
|
|
|
|
|
|
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|