-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaxonomy-community-categories.php
executable file
·59 lines (37 loc) · 1.37 KB
/
taxonomy-community-categories.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php get_header(); ?>
<div role="main" class="main">
<div class="page_title">
<div class="wrapper">
<hgroup>
<h1><?php single_cat_title(); ?></h1>
<h2>Items categorised as <?php single_cat_title(); ?></h2>
</hgroup>
</div>
</div><!--end page title-->
<div class="main_content cf">
<?php include_once "breadcrumbs.php"; ?>
<div class="wrapper cf container">
<div class="one_third tree_wrap">
</div>
<div class="two_thirds">
<div class="content_wrap cf">
<article class="cf">
<hgroup>
<h2>Community items categorised as "<?php single_cat_title(); ?>"</h2>
</hgroup>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="result">
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_excerpt(); ?>
</div><!-- end result-->
<?php endwhile; ?>
<?php else : ?>
<p>No Results for your query. Please try again.</p>
<?php endif; ?>
</article>
</div><!--end content wrap-->
</div><!--end two thirds-->
</div><!--end wrapper-->
</div><!--end main_content-->
</div><!-- end main -->
<?php get_footer(); ?>