andrewmccall / hemingway forked from kneath/hemingway

It's my wordpress theme, originally based on Hemingway.

This URL has Read+Write access

hemingway / dynamic_sidebar.php
100644 27 lines (23 sloc) 0.748 kb
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
<?php global $hemingway ?>
<hr class="hide" />
<div id="ancillary">
<div class="inside">
<div class="block first">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>
<?php $hemingway->get_block_output('block_1'); ?>
<?php endif; ?>
</div>
<div class="block">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?>
<?php $hemingway->get_block_output('block_2'); ?>
<?php endif; ?>
</div>
<div class="block">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(3) ) : ?>
<?php $hemingway->get_block_output('block_3'); ?>
<?php endif; ?>
</div>
<div class="clear"></div>
</div>
</div>
<!-- [END] #ancillary -->