Guest User

biography-free-support

a guest
Jan 22nd, 2018
416
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.38 KB | None | 0 0
  1. function biography_footer() {
  2.         global $biography_customizer_saved_options;
  3.         ?>
  4.         <!-- *****************************************
  5.              Footer section starts
  6.     ****************************************** -->
  7.         <div class="clearfix"></div>
  8.         <footer id="colophon" class="site-footer" role="contentinfo">
  9.             <div class="site-info">
  10.                 <?php
  11.                     if(isset($biography_customizer_saved_options['biography-copyright-text'])){
  12.                         echo '<div class="copyright">'.htmlspecialchars_decode( wp_kses_post( $biography_customizer_saved_options['biography-copyright-text'] ))."</div>";
  13.                     }
  14.                 ?>
  15.                 <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'biography' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'biography' ), 'WordPress' ); ?></a>
  16.                 <span class="sep"> | </span>
  17.                 <?php printf( esc_html__( ' %1$s by %2$s.', 'biography' ), 'Biography', '<a href="'. esc_url( __( 'http://www.yamchhetri.com/','biography' ) ).'" rel="designer">'.__('Yam Chhetri','biography' ).'</a>' ); ?>
  18.             </div><!-- .site-info -->
  19.         </footer><!-- #colophon -->
  20.         <!-- *****************************************
  21.                  Footer section ends
  22.         ****************************************** -->
  23.     <?php
  24.     }
Advertisement
Add Comment
Please, Sign In to add comment