mirror of
https://ghproxy.net/https://github.com/AlxMedia/gridzone.git
synced 2025-08-27 01:40:13 +08:00
Initial commit
This commit is contained in:
commit
67c8055046
350 changed files with 82275 additions and 0 deletions
87
footer.php
Normal file
87
footer.php
Normal file
|
@ -0,0 +1,87 @@
|
|||
</div><!--/.main-inner-->
|
||||
</div><!--/.main-->
|
||||
</div><!--/.container-inner-->
|
||||
</div><!--/.container-->
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
<footer id="footer">
|
||||
|
||||
<?php if ( get_theme_mod( 'footer-ads', 'off' ) == 'on' ): ?>
|
||||
<div id="footer-ads">
|
||||
<?php dynamic_sidebar( 'footer-ads' ); ?>
|
||||
</div><!--/#footer-ads-->
|
||||
<?php endif; ?>
|
||||
|
||||
<?php // footer widgets
|
||||
$total = 4;
|
||||
if ( get_theme_mod( 'footer-widgets','0' ) != '' ) {
|
||||
|
||||
$total = get_theme_mod( 'footer-widgets' );
|
||||
if( $total == 1) $class = 'one-full';
|
||||
if( $total == 2) $class = 'one-half';
|
||||
if( $total == 3) $class = 'one-third';
|
||||
if( $total == 4) $class = 'one-fourth';
|
||||
}
|
||||
|
||||
if ( ( is_active_sidebar( 'footer-1' ) ||
|
||||
is_active_sidebar( 'footer-2' ) ||
|
||||
is_active_sidebar( 'footer-3' ) ||
|
||||
is_active_sidebar( 'footer-4' ) ) && $total > 0 )
|
||||
{ ?>
|
||||
<div id="footer-widgets">
|
||||
|
||||
<div class="pad group">
|
||||
<?php $i = 0; while ( $i < $total ) { $i++; ?>
|
||||
<?php if ( is_active_sidebar( 'footer-' . $i ) ) { ?>
|
||||
|
||||
<div class="footer-widget-<?php echo esc_attr( $i ); ?> grid <?php echo esc_attr( $class ); ?> <?php if ( $i == $total ) { echo 'last'; } ?>">
|
||||
<?php dynamic_sidebar( 'footer-' . $i ); ?>
|
||||
</div>
|
||||
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</div><!--/.pad-->
|
||||
|
||||
</div><!--/#footer-widgets-->
|
||||
<?php } ?>
|
||||
|
||||
<div id="footer-bottom">
|
||||
|
||||
<a id="back-to-top" href="#"><i class="fa fa-angle-up"></i></a>
|
||||
|
||||
<div class="pad group">
|
||||
|
||||
<div class="grid one-full">
|
||||
|
||||
<?php if ( get_theme_mod('footer-logo') ): ?>
|
||||
<img id="footer-logo" src="<?php echo esc_url( get_theme_mod('footer-logo') ); ?>" alt="<?php echo esc_attr( get_bloginfo('name')); ?>">
|
||||
<?php endif; ?>
|
||||
|
||||
<div id="copyright">
|
||||
<?php if ( get_theme_mod( 'copyright' ) ): ?>
|
||||
<p><?php echo esc_html( get_theme_mod( 'copyright' ) ); ?></p>
|
||||
<?php else: ?>
|
||||
<p><?php bloginfo(); ?> © <?php echo esc_html( date_i18n( esc_html__( 'Y', 'gridzone' ) ) ); ?>. <?php esc_html_e( 'All Rights Reserved.', 'gridzone' ); ?></p>
|
||||
<?php endif; ?>
|
||||
</div><!--/#copyright-->
|
||||
|
||||
<?php if ( get_theme_mod( 'credit', 'on' ) == 'on' ): ?>
|
||||
<div id="credit">
|
||||
<p><?php esc_html_e('Powered by','gridzone'); ?> <a href="http://wordpress.org" rel="nofollow">WordPress</a>. <?php esc_html_e('Theme by','gridzone'); ?> <a href="http://alx.media" rel="nofollow">Alx</a>.</p>
|
||||
</div><!--/#credit-->
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
|
||||
</div><!--/.pad-->
|
||||
|
||||
</div><!--/#footer-bottom-->
|
||||
|
||||
</footer><!--/#footer-->
|
||||
|
||||
</div><!--/#wrapper-->
|
||||
|
||||
<?php wp_footer(); ?>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue