Advertisement
srikat

Untitled

May 16th, 2013
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.34 KB | None | 0 0
  1. <?php
  2.  
  3. add_action('wp_head', 'remove_footer_logo');
  4.  
  5. function remove_footer_logo() {
  6.     remove_action ( 'cyberchimps_footer', 'cyberchimps_footer_credit' );
  7. }
  8.  
  9. function my_cyberchimps_footer_credit() {
  10. ?>
  11.     <div class="container-full-width" id="after_footer">
  12.         <div class="container">
  13.             <div class="container-fluid">
  14.                 <footer class="site-footer row-fluid">
  15.                     <div class="span6">
  16.                         <div id="credit">
  17.                             <?php if ( cyberchimps_get_option( 'footer_cyberchimps_link', 1 ) == '1'):  ?>
  18.                                 <a href="#" target="_blank"><img src="http://wordpress.dev/wp-content/uploads/2013/04/450x100.gif" alt="Home" /></a>
  19.                             <?php endif; ?>
  20.                         </div>
  21.                     </div>
  22.  
  23.                     <!-- Adds the afterfooter copyright area -->
  24.                     <div class="span6">
  25.                     <?php $copyright = ( cyberchimps_get_option( 'footer_copyright_text' ) ) ? cyberchimps_get_option( 'footer_copyright_text' ) : 'CyberChimps &#169;'. date( 'Y' ); ?>
  26.                         <div id="copyright">
  27.                             <?php echo wp_kses( $copyright, array('a' => array('href' => array(),'title' => array()),'br' => array(),'em' => array(),'strong' => array()) ); ?>
  28.                         </div>
  29.                     </div>
  30.                 </footer><!-- row-fluid -->
  31.             </div>  <!-- .container-fluid-->
  32.         </div>  <!-- .container -->
  33.     </div>  <!-- #after_footer -->
  34.     <?php
  35. }
  36. add_action ( 'cyberchimps_footer', 'my_cyberchimps_footer_credit' );
  37.  
  38. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement