PluginProbe
Welcart e-Commerce / 1.3.5
Welcart e-Commerce v1.3.5
2.12.4 2.12.3 2.11.35 2.12.2 2.12.1 2.11.34 2.11.33 2.11.32 2.11.31 2.11.30 1.3.16 1.3.17 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 All 292 releases
usc-e-shop / theme / welcart_default / single.php

single.php in Welcart e-Commerce 1.3.5, at theme/welcart_default/single.php

51 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * <meta content="charset=UTF-8">
4 * @package Welcart
5 * @subpackage Welcart Default Theme
6 */
7 get_header();
8 ?>
9
10 <div id="content" class="two-column">
11
12 <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
13
14 <h1 class="pagetitle"><?php the_title(); ?></h1>
15
16 <div class="catbox">
17 <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
18 <?php if(!usces_is_item()): ?>
19 <?php the_date('','<span class="storydate">','</span>'); ?>
20 <div class="storymeta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> &#8212; <?php the_tags(__('Tags: '), ', ', ' &#8212; '); ?> <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
21 <?php endif; ?>
22 <div class="storycontent">
23 <?php the_content(__('(more...)')); ?>
24 </div>
25
26 <?php if(!usces_is_item()): ?>
27 <div class="feedback">
28 <?php wp_link_pages(); ?>
29 </div>
30
31 <?php comments_template( '', true ); ?>
32
33 <?php endif; ?>
34 </div>
35 </div><!-- end of catbox -->
36
37
38 <?php endwhile; else: ?>
39 <div class="catbox">
40 <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
41 </div><!-- end of catbox -->
42 <?php endif; ?>
43
44 <?php posts_nav_link(' &#8212; ', __('&laquo; Newer Posts'), __('Older Posts &raquo;')); ?>
45
46 </div><!-- end of content -->
47
48 <?php get_sidebar( 'other' ); ?>
49
50 <?php get_footer(); ?>
51