Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- add_action('wp_head', 'remove_footer_logo');
- function remove_footer_logo() {
- remove_action ( 'cyberchimps_footer', 'cyberchimps_footer_credit' );
- }
- function my_cyberchimps_footer_credit() {
- ?>
- <div class="container-full-width" id="after_footer">
- <div class="container">
- <div class="container-fluid">
- <footer class="site-footer row-fluid">
- <div class="span6">
- <div id="credit">
- <?php if ( cyberchimps_get_option( 'footer_cyberchimps_link', 1 ) == '1'): ?>
- <a href="#" target="_blank"><img src="http://wordpress.dev/wp-content/uploads/2013/04/450x100.gif" alt="Home" /></a>
- <?php endif; ?>
- </div>
- </div>
- <!-- Adds the afterfooter copyright area -->
- <div class="span6">
- <?php $copyright = ( cyberchimps_get_option( 'footer_copyright_text' ) ) ? cyberchimps_get_option( 'footer_copyright_text' ) : 'CyberChimps ©'. date( 'Y' ); ?>
- <div id="copyright">
- <?php echo wp_kses( $copyright, array('a' => array('href' => array(),'title' => array()),'br' => array(),'em' => array(),'strong' => array()) ); ?>
- </div>
- </div>
- </footer><!-- row-fluid -->
- </div> <!-- .container-fluid-->
- </div> <!-- .container -->
- </div> <!-- #after_footer -->
- <?php
- }
- add_action ( 'cyberchimps_footer', 'my_cyberchimps_footer_credit' );
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement