-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpost-footer.php
More file actions
22 lines (21 loc) · 1.02 KB
/
Copy pathpost-footer.php
File metadata and controls
22 lines (21 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/************************************************************************************/
/* Post Footer */
/************************************************************************************/
?>
<div id="post-footer-cols" class="pure-g">
<?php if(is_active_sidebar('post-footer')) : ?>
<div id="post-footer" class="<?php echo simply_pure_sidebars_class('post-footer'); ?>">
<?php if(!function_exists('dynamic_sidebar') || !dynamic_sidebar('post-footer')); ?>
</div>
<?php endif; if(is_active_sidebar('post-footer-2')) : ?>
<div id="post-footer" class="<?php echo simply_pure_sidebars_class('post-footer'); ?>">
<?php if(!function_exists('dynamic_sidebar') || !dynamic_sidebar('post-footer-2')); ?>
</div>
<?php endif; if(is_active_sidebar('post-footer-3')) : ?>
<div id="post-footer" class="<?php echo simply_pure_sidebars_class('post-footer'); ?>">
<?php if(!function_exists('dynamic_sidebar') || !dynamic_sidebar('post-footer-3')); ?>
</div>
<?php endif; ?>
<div class="clearfix"></div>
</div>