File Editor
Directories:
.. (Back)
css
font-awesome
images
inc
js
languages
page-templates
Files:
404.php
archive.php
comments.php
content-page.php
content-single.php
content.php
footer.php
front-page.php
functions.php
header.php
index.php
navigation.php
no-results.php
page.php
readme.txt
search.php
searchform.php
sidebar-footer.php
sidebar-left.php
sidebar.php
single.php
style.css
Create New File
Create
Edit File: footer.php
<?php /** * Theme Footer Section for our theme. * * Displays all of the footer section and closing of the #page div. * * @package ThemeGrill * @subpackage Himalayas * @since Himalayas 1.0 */ ?> <?php $himalayas_footer_layout = get_theme_mod( 'himalayas_footer_layout', 'footer-layout-one' ); ?> <footer id="colophon" class="footer-with-widget <?php echo $himalayas_footer_layout; ?>"> <?php get_sidebar( 'footer' ); if( $himalayas_footer_layout == 'footer-layout-two' && get_theme_mod( 'himalayas_logo', '' ) != '' ) { ?> <div class="footer-logo"> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img src="<?php echo esc_url( get_theme_mod( 'himalayas_logo' ) ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"></a> </div> <?php } ?> <div id="bottom-footer"> <div class="tg-container"> <?php do_action( 'himalayas_footer_copyright' ); ?> <div class="footer-nav"> <?php if ( has_nav_menu( 'footer' ) ) { wp_nav_menu( array( 'theme_location' => 'footer', 'container_id' => $himalayas_footer_layout, 'depth' => -1, 'fallback_cb' => false ) ); } ?> </div> </div> </div> </footer> <a href="#" class="scrollup"><i class="fa fa-angle-up"> </i> </a> </div> <!-- #Page --> <?php wp_footer(); ?> </body> </html>
Save Changes
Rename File
Rename