File: /virtual/nagasaki/public_html/shop/wp-content/themes/welcart_default/search.php
<?php
/**
* <meta content="charset=UTF-8">
* @package Welcart
* @subpackage Welcart Default Theme
*/
get_header();
?>
<div id="content" class="two-column">
<h1 class="pagetitle"><?php _e('Search Results', 'usces'); ?></h1>
<div class="catbox">
<?php if (have_posts()) : ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link(__('Next article »', 'usces')); ?></div>
<div class="alignright"><?php previous_posts_link(__('« Previous article', 'usces')); ?></div>
</div>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class(); ?>>
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<div class="entry clearfix">
<?php if(!usces_is_item()): ?>
<p><small><?php the_date('Y/n/j'); ?></small></p>
<?php endif; ?>
<?php the_content() ?>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link(__('Next article »', 'usces')); ?></div>
<div class="alignright"><?php previous_posts_link(__('« Previous article', 'usces')); ?></div>
</div>
<?php else : ?>
<p><?php echo __('No posts found.', 'usces'); ?></p>
<?php endif; ?>
</div><!-- end of catbox -->
</div><!-- end of content -->
<?php get_sidebar( 'other' ); ?>
<?php get_footer(); ?>