-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemplate-imagegallery.php
45 lines (29 loc) · 1.27 KB
/
template-imagegallery.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
<?php
/*
Template Name: Image Gallery
*/
?>
<?php get_header(); ?>
<div id="content-wrap">
<div id="content" class="page col-full">
<?php if ( $woo_options[ 'woo_breadcrumbs_show' ] == 'true' ) woo_breadcrumbs(); ?>
<div id="main" class="col-left">
<div class="post">
<h1 class="title"><?php the_title(); ?></h1>
<div class="entry">
<?php if (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endif; ?>
<?php query_posts('showposts=60'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php $wp_query->is_home = false; ?>
<?php woo_image('single=true&class=thumbnail alignleft'); ?>
<?php endwhile; endif; ?>
</div>
</div><!-- /.post -->
<div class="fix"></div>
</div><!-- /#main -->
<?php get_sidebar(); ?>
</div><!-- /#content -->
</div><!-- /#content-wrap -->
<?php get_footer(); ?>