golden hour
/home/phakp/public_html/wp-content/themes/ngo-social-services
⬆️ Go Up
Upload
File/Folder
Size
Actions
assets
-
Del
OK
footer.php
2.92 KB
Del
OK
functions.php
12.47 KB
Del
OK
page-template
-
Del
OK
readme.txt
4.49 KB
Del
OK
screenshot.png
233.78 KB
Del
OK
style.css
5.91 KB
Del
OK
Edit: footer.php
<?php /** * The template for displaying the footer * * Contains the closing of the #content div and all content after. * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package NGO Social Services */ ?> <footer id="colophon" class="site-footer border-top"> <div class="container"> <div class="footer-column"> <div class="row"> <?php if(is_active_sidebar( 'charity-zone-footer1' ) || is_active_sidebar( 'charity-zone-footer2' ) || is_active_sidebar( 'charity-zone-footer3' ) ): ?> <div class="col-lg-4 col-md-4"> <?php if(is_active_sidebar( 'charity-zone-footer1' )): dynamic_sidebar( 'charity-zone-footer1' ); endif; ?> </div> <div class="col-lg-4 col-md-4"> <?php if(is_active_sidebar( 'charity-zone-footer2' )): dynamic_sidebar( 'charity-zone-footer2' ); endif; ?> </div> <div class="col-lg-4 col-md-4"> <?php if(is_active_sidebar( 'charity-zone-footer3' )): dynamic_sidebar( 'charity-zone-footer3' ); endif; ?> </div> <?php endif; ?> </div> </div> <div class="row"> <div class="col-lg-5 col-md-5 col-12"> <?php if ( has_nav_menu( 'footer' ) ): ?> <nav class="navbar footer-menu"> <?php wp_nav_menu( array( 'theme_location' => 'footer', 'container' => 'div', 'container_id' => 'main-nav', 'menu_id' => false, 'depth' => 1, ) ); ?> </nav> <?php endif ?> </div> <div class="site-info col-lg-7 col-md-7 col-12"> <div class="footer-menu-left"> <?php if(! get_theme_mod('charity_zone_footer_text_setting') != ''){ ?> <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'ngo-social-services' ) ); ?>"> <?php /* translators: %s: CMS name, i.e. WordPress. */ printf( esc_html__( 'Proudly powered by %s', 'ngo-social-services' ), 'WordPress' ); ?> </a> <span class="sep mr-1"> | </span> <span> <a target="_blank" href="<?php echo esc_url( __( ' https://www.themagnifico.net/themes/free-social-services-wordpress-theme/', 'ngo-social-services' ) ); ?>"> <?php /* translators: 1: Theme name, */ printf( esc_html__( ' %1$s ', 'ngo-social-services' ),'Social Services WordPress Theme' ); ?> </a> <?php /* translators: 1: Theme author. */ printf( esc_html__( 'by %1$s.', 'ngo-social-services' ),'TheMagnifico' ); ?> </span> <?php }?> <?php echo esc_html(get_theme_mod('charity_zone_footer_text_setting','')); ?> </div> </div> </div> <a id="button"><?php esc_html_e('TOP','ngo-social-services'); ?></a> </div> </footer> </div> <?php wp_footer(); ?> </body> </html>
Save