git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@163 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6
78 lines
2.4 KiB
PHP
78 lines
2.4 KiB
PHP
<?php require(ghostpool_inc . 'options.php'); ?>
|
|
|
|
</div>
|
|
<!--End Content Wrapper-->
|
|
|
|
</div>
|
|
<!--End Page Wrapper-->
|
|
|
|
<div class="clear"></div>
|
|
<?php if ( is_user_logged_in() ): ?>
|
|
<div id="footer">
|
|
<!--Begin Footer Widgets-->
|
|
<?php if($theme_footer_widgets == "All Pages" OR ($theme_footer_widgets == "Homepage" && is_home())) { ?>
|
|
|
|
<div id="footer-widgets">
|
|
|
|
<?php if(is_active_sidebar('footer-1') OR is_active_sidebar('footer-2') OR is_active_sidebar('footer-3') OR is_active_sidebar('footer-4')) { ?>
|
|
|
|
<?php
|
|
if(is_active_sidebar('footer-1') && is_active_sidebar('footer-2') && is_active_sidebar('footer-3') && is_active_sidebar('footer-4')) {
|
|
$footer_widgets = "footer-fourth";
|
|
}
|
|
elseif(is_active_sidebar('footer-1') && is_active_sidebar('footer-2') && is_active_sidebar('footer-3')) {
|
|
$footer_widgets = "footer-third";
|
|
}
|
|
elseif(is_active_sidebar('footer-1') && is_active_sidebar('footer-2')) {
|
|
$footer_widgets = "footer-half";
|
|
}
|
|
elseif(is_active_sidebar('footer-1')) {
|
|
$footer_widgets = "footer-whole";
|
|
}
|
|
?>
|
|
|
|
<?php if(is_active_sidebar('footer-1')) { ?>
|
|
<div class="footer-widget-outer <?php echo($footer_widgets); ?>">
|
|
<?php dynamic_sidebar('footer-1'); ?>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php if(is_active_sidebar('footer-2')) { ?>
|
|
<div class="footer-widget-outer <?php echo($footer_widgets); ?>">
|
|
<?php dynamic_sidebar('footer-2'); ?>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php if(is_active_sidebar('footer-3')) { ?>
|
|
<div class="footer-widget-outer <?php echo($footer_widgets); ?>">
|
|
<?php dynamic_sidebar('footer-3'); ?>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php if(is_active_sidebar('footer-4')) { ?>
|
|
<div class="footer-widget-outer <?php echo($footer_widgets); ?>">
|
|
<?php dynamic_sidebar('footer-4'); ?>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php } ?>
|
|
<div class="clear"></div>
|
|
</div>
|
|
<?php } ?>
|
|
<!--End Footer Widgets-->
|
|
|
|
<!--Begin Footer Bottom-->
|
|
<?php if($theme_footer_content) { ?>
|
|
<div id="footer-bottom">
|
|
<?php echo do_shortcode(stripslashes($theme_footer_content)); ?>
|
|
</div>
|
|
<?php } ?>
|
|
<!--End Footer Bottom-->
|
|
<div class="clear"></div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php wp_footer(); ?>
|
|
<?php require(ghostpool_scripts . 'custom.php'); ?>
|
|
</body>
|
|
</html>
|