-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-tags.php
38 lines (27 loc) · 1.04 KB
/
template-tags.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/*
Template Name: Tags
*/
?>
<?php get_header(); ?>
<div id="content" class="page col-full">
<div id="main" class="fullwidth">
<?php if ( isset( $woo_options['woo_breadcrumbs_show'] ) && $woo_options['woo_breadcrumbs_show'] == 'true' ) { ?>
<div id="breadcrumb">
<?php woo_breadcrumbs(); ?>
</div><!--/#breadcrumbs -->
<?php } ?>
<div class="post">
<h1 class="title"><?php the_title(); ?></h1>
<?php if (have_posts()) : the_post(); ?>
<div class="entry">
<?php the_content(); ?>
</div>
<?php endif; ?>
<div class="tag_cloud">
<?php wp_tag_cloud('number=0'); ?>
</div>
</div><!-- /.post -->
</div><!-- /#main -->
</div><!-- /#content -->
<?php get_footer(); ?>